Previous: utreps Up: ../plot79_u.html Next: utriv
SUBROUTINE UTRFA (V,NV,INCV,FILL)
C$ (REAL Fill Array)
C$ Fill a vector V(*) with the value "FILL". The arguments
C$ are:
C$
C$ V(*)...........Vector to be filled.
C$ NV.............Number of elements to fill.
C$ INCV...........Increment between successive elements of
C$ V(*). If it is negative, the K-th element
C$ of V is at storage location 1 + (NV -
C$ K)*IABS(INCV). If it is positive, the K-th
C$ element is at location 1 + (K - 1)*INCV.
C$ This is the same convention as used in the
C$ BLAS.
C$ FILL...........Fill value.
C$ (09-APR-82)