max[]

Maximum value.

Returns the larger of its arguments: either x or y.

Syntax

max[x, y]

Parameters

x Values among which the function selects a maximum.
y Values among which the function selects a maximum.
Return Value The maximum numeric value of its arguments.

Examples

#<result> = max[3, 5]
(print,#<result>)

result: 5

See also

min, max3,