MINVAL
— Minimum value of an array.TRUE.
are
considered. If the array has zero size, or all of the elements of
MASK are .FALSE.
, then the result is HUGE(ARRAY)
if
ARRAY is numeric, or a string of CHAR(255)
characters if
ARRAY is of character type.
RESULT = MINVAL(ARRAY, DIM [, MASK])
|
RESULT = MINVAL(ARRAY [, MASK])
|
ARRAY | Shall be an array of type INTEGER or
REAL .
|
DIM | (Optional) Shall be a scalar of type
INTEGER , with a value between one and the rank of ARRAY,
inclusive. It may not be an optional dummy argument.
|
MASK | Shall be an array of type LOGICAL ,
and conformable with ARRAY.
|