Returns the smaller of two or more numerical values.
double Min(double/int value1; double/int value2; [double/int value 3]; ...)
value1 |
The first value to compare. |
value2 |
The second value to compare. |
value3 |
Optional third value to compare. |
Example
Min(-300; 200; 150)
Returns -300.