/sys$common/syshlp/helplib.hlb FORTRAN, Intrinsic Procedures, xMAX *Conan The Librarian (sorry for the slow response - running on an old VAX) |
REAL*4 SMAX (n, x, incx) REAL*8 DMAX (n, x, incx) COMPLEX*8 CMAX (n, x, incx) COMPLEX*16 ZMAX (n, x, incx) Functions that return the first selected element of the array "x" that has the maximum value. 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. x Array containing the elements to be accessed or array reference to the first such element. The data type is REAL*4 for SMAX, REAL*8 for DMAX, COMPLEX*8 for CMAX, COMPLEX*16 for ZMAX. incx Integer index increment used in selecting which elements of array "x" are accessed.
|