mathmin()
Previous  Next

The function returns the minimal value of two values.
double mathmin(
double value1, // first value
double value2 // second value
);
Parameters
value1
[in] First numeric value.
value2
[in] Second numeric value.
Return Value
The smallest of the two values.