HP MLIB User's Guide Vol. 1 7th Ed.

54 HP MLIB User’s Guide
ISSVxx/IDSVxx/IISVxx/ICSVxx/IZSVxx Search vector for element
INTEGER*4 i, IISVxx, n, incx, a, x(lenx)
i = IISVxx(n, x, incx, a)
INTEGER*4 i, ICSVxx, n, incx
COMPLEX*8 a, x(lenx)
i = ICSVxx(n, x, incx, a)
INTEGER*4 i, IZSVxx, n, incx
COMPLEX*16 a, x(lenx)
i = IZSVxx(n, x, incx, a)
VECLIB8:
INTEGER*8 i, ISSVxx, n, incx
REAL*4 a, x(lenx)
i = ISSVxx(n, x, incx, a)
INTEGER*8 i, IDSVxx, n, incx
REAL*8 a, x(lenx)
i = IDSVxx(n, x, incx, a)
INTEGER*8 i, IISVxx, n, incx, a, x(lenx)
i = IISVxx(n, x, incx, a)
INTEGER*8 i, ICSVxx, n, incx
COMPLEX*8 a, x(lenx)
i = ICSVxx(n, x, incx, a)
INTEGER*8 i, IZSVxx, n, incx
COMPLEX*16 a, x(lenx)
i = IZSVxx(n, x, incx, a)
Input n Number of elements of vector x to be compared to a. If
n 0, the subprograms do not reference x.
x Array of length lenx = (n1)×|incx|+1 containing the
n-vector x.
incx Increment for the array x. x is stored forward in array x
with increment |incx|; that is, x
i
is stored in
x((i1)×|incx|+1).
Use incx = 1 if the vector x is stored contiguously in
array x; that is, if x
i
is stored in x(i). Refer to “BLAS
Indexing Conventions” in the introduction to this
chapter.
a The scalar a.