Skip to main content

Math: max

Find the biggest number from a list of numbers. This is a per-record max over the inputs received together in one call — for a streaming max across rows, see the Aggregate namespace counterpart.

Example
Input: [1, 2, 3, 4, 5, 42]
Ouput: 42

Parameters

This function has no parameters.

Input

Number (multiple)required
Any numbers.

Output

Number
The biggest number.