VMS Help FORTRAN, Intrinsic Procedures, xSET *Conan The Librarian (sorry for the slow response - running on an old VAX) |
SSET (n, a, x, incx) DSET (n, a, x, incx) CSET (n, a, x, incx) ZSET (n, a, x, incx) Subroutines that set all selected elements of array "x" to scalar value "a". These routines are part of the BLAS1 Extended Set, and are available only on VAX processors. The Compaq Extended Math Library product may be needed to resolve references to Extended Set routines that are not expanded inline by the compiler. Arguments n Integer number of elements in array "x" to be accessed. a Scalar value to be stored in all selected elements of array "x". The data type is REAL*4 for SSET, REAL*8 for DSET, COMPLEX*8 for CSET, COMPLEX*16 for ZSET x Array containing the elements to be accessed or array reference to the first such element. The data type is REAL*4 for SSET, REAL*8 for DSET, COMPLEX*8 for CSET, COMPLEX*16 for ZSET. incx Integer index increment used in selecting which elements of array "x" are accessed.
|