Visible to Intel only — GUID: GUID-72837EB3-FB8F-4C4F-83B0-F7DF60D04461
Visible to Intel only — GUID: GUID-72837EB3-FB8F-4C4F-83B0-F7DF60D04461
?lacgv
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);
- mkl.h
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.
- n
-
The length of the vector x (n≥ 0).
- x
-
Array, dimension (1+(n-1)* |incx|).
Contains the vector of length n to be conjugated.
- incx
-
The spacing between successive elements of x.
- x
-
On exit, overwritten with conjg(x).