LBOUND(ARRAY, DIM, KIND)

Purpose

Returns the lower bound of each dimension in an array, or the lower bound of a specified dimension.

Class

Inquiry function

Argument type and attributes

ARRAY
is the array whose lower bounds you want to determine. Its bounds must be defined; that is, it cannot be a disassociated pointer or an allocatable array that is not allocated.
DIM (optional)
is an integer scalar in the range 1 ≤ DIM ≤  rank(ARRAY). The corresponding actual argument must not be an optional dummy argument.
Fortran 2003 begins KIND (optional)
must be a scalar integer constant expression. Fortran 2003 ends

Result type and attributes

Result value

Each element in the result corresponds to a dimension of array.
  • If ARRAY is a whole array or array structure component, LBOUND(ARRAY, DIM) is equal to the lower bound for subscript DIM of ARRAY.

    The only exception is for a dimension that is zero-sized and ARRAY is not an assumed-size array of rank DIM, in such a case, the corresponding element in the result is one regardless of the value declared for the lower bound.

  • If ARRAY is an array section or expression that is not a whole array or array structure component, each element has the value one.

Examples

        REAL A(1:10, -4:5, 4:-5)

        RES=LBOUND( A )
! The result is (/ 1, -4, 1 /).

        RES=LBOUND( A(:,:,:) )
        RES=LBOUND( A(4:10,-4:1,:) )
! The result in both cases is (/ 1, 1, 1 /)
! because the arguments are array sections.