Description: This function returns the minimum of a group of parameters.
Returns: Numeric
Usage: Script or Steady State
Format: Min(Parm1, Parm2 [, Parm3, ...])
Parameters: Parm1, Parm2, Parm3, ... { numeric } { required } { no default }
Any number of parameters, giving any numeric expressions, from which a minimum value will be selected.
Comments: The order of the values is irrelevant. If any of the parameters is invalid, the return value is invalid also.
Examples:
p = Min(62, 3, 2, 2.01);
q = Min(3, 2);
r = Min(Invalid, 6);
The values of p, q, and r will be 2, 2 and invalid respectively.
See Also:
AMax | AMin| Limit | Max | Math Functions