mathmax()
Previous
Next
The function returns the maximal value of two values.
double mathmax(
double value1, // first value
double value2 // second value
);
Parameters
value1
[in] First numeric value.
value2
[in] Second numeric value.
Return Value
The largest of the two values.