NAME

min - return minimum value of params


SYNOPSIS

minval = min(p0, p1, p2, ...)


DESCRIPTION

min returns the minimum of all the parameters p0, p1, ... etc. passed to it.


ARGUMENTS
p0, p1, ..., pN
The parameters passed into min may be any number, floating point or integer. min will not work on arrays or tables.


EXAMPLES
   mval = min(7, 0, 8.9, -14, 78.7878)

SEE ALSO

abs, log, pow, max, mod, round, trunc, wrap