Intel® oneAPI Math Kernel Library Developer Reference - C
Conjugates a complex vector.
lapack_int LAPACKE_clacgv (lapack_int n, lapack_complex_float* x, lapack_int incx);
lapack_int LAPACKE_zlacgv (lapack_int n, lapack_complex_double* x, lapack_int incx);
The routine conjugates a complex vector x of length n and increment incx (see "Vector Arguments in BLAS" in Appendix B).
A <datatype> placeholder, if present, is used for the C interface data types in the C interface section above. See C Interface Conventions for the C interface principal conventions and type definitions.
The length of the vector x (n≥ 0).
Array, dimension (1+(n-1)* |incx|).
Contains the vector of length n to be conjugated.
The spacing between successive elements of x.
On exit, overwritten with conjg(x).