Functions Index :: M :: Min
Module:
Definition:
Min(val x1, val "x2", val "x3", val "x4", ... , val "x20")
Description:
Returns the smaller of its arguments. [1]
Examples:
v = Min(1.1, 2.34, 3.05, -4, 0.9, 3) # v == -4
w = Min(-1.1, -2.34, 0, -4, -0.9) # w == -4
[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.