Functions Index :: M :: Max

[<< up one level]

Module:

numeric :: core

Definition:

Max(val x1, val "x2", val "x3", val "x4", ... , val "x20")

Description:

Returns the bigger of its arguments. [1]

Examples:

v = Max(1.1, 2.34, 3.05, -4, 0.9, 3) # v == 3.05

w = Max(-1.1, -2.34, 0, -4, -0.9) # w == 0

 

[<< top]

 


[1]: The function can handle up to 20 arguments. This number is chosen as a good balance between usability and speed. If more arguments are needed use an array and the ArraySum function, or a suitable function of the array package.