NAME

max - return maximum value of params


SYNOPSIS

maxval = max(p0, p1, p2, ...)


DESCRIPTION

max returns the maximum of all the parameters p0, p1, ... etc. passed to it.


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


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

SEE ALSO

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