Platform | x64, Win32, .NET |
Purpose |
To get the minimum value of a list of numbers. |
Class |
Elemental function. |
Syntax |
INTEGER FUNCTION MIN(A1, A2 [, A3, ...]); INTEGER A1,... |
Description |
The arguments must all be of same type and kind type which will be the type and kind type of the result. |
Return value |
The result is the smallest item in the list. |
Example |
MIN(-1.0, 0.0, 2.0) gives -1.0. |