min[]

Minimum value.

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

Syntax

min[x, y]

Parameters

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

Examples

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

result: 3

See also

max, min3,