MINLOC
— Location of the minimum value within an array.TRUE.
are considered. If more than one
element in the array has the minimum value, the location returned is
that of the first such element in array element order if the
BACK is not present, or is false; if BACK is true, the location
returned is that of the last such element. If the array has
zero size, or all of the elements of MASK are .FALSE.
, then
the result is an array of zeroes. Similarly, if DIM is supplied
and all of the elements of MASK along a given row are zero, the
result value for that row is zero.
CHARACTER
and the
KIND argument are available in Fortran 2003 and later.
The BACK argument is available in Fortran 2008 and later.
RESULT = MINLOC(ARRAY, DIM [, MASK] [,KIND] [,BACK])
|
RESULT = MINLOC(ARRAY [, MASK], [,KIND] [,BACK])
|
ARRAY | Shall be an array of type INTEGER ,
REAL or CHARACTER .
|
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.
|
KIND | (Optional) An INTEGER initialization
expression indicating the kind parameter of the result.
|
BACK | (Optional) A scalar of type LOGICAL .
|