Intel® oneAPI Math Kernel Library Developer Reference - Fortran
Conjugates a complex vector.
call clacgv( n, x, incx )
call zlacgv( n, x, incx )
The routine conjugates a complex vector x of length n and increment incx (see "Vector Arguments in BLAS" in Appendix B).
The data types are given for the Fortran interface.
INTEGER. The length of the vector x (n≥ 0).
COMPLEX for clacgv
DOUBLE COMPLEX for zlacgv.
Array, dimension (1+(n-1)* |incx|).
Contains the vector of length n to be conjugated.
INTEGER. The spacing between successive elements of x.
On exit, overwritten with conjg(x).