Intel® Math Kernel Library 2019 Developer Reference - Fortran
Performs element by element conjugation of the vector.
call vcconj( n, a, y )
call vmcconj( n, a, y, mode )
call vzconj( n, a, y )
call vmzconj( n, a, y, mode )
Name |
Type |
Description |
|---|---|---|
n |
INTEGER, INTENT(IN) |
Specifies the number of elements to be calculated. |
a |
DOUBLE COMPLEX, INTENT(IN) for vzconj, vmzconj COMPLEX, INTENT(IN) for vcconj, vmcconj DOUBLE COMPLEX, INTENT(IN) for vzconj, vmzconj |
Array that specifies the input vector a. |
mode |
INTEGER(KIND=8), INTENT(IN) |
Overrides global VM mode setting for this function call. See vmlSetMode for possible values and their description. |
Name |
Type |
Description |
|---|---|---|
y |
DOUBLE COMPLEX for vzconj, vmzconj COMPLEX, INTENT(OUT) for vcconj, vmcconj DOUBLE COMPLEX, INTENT(OUT) for vzconj, vmzconj |
Array that specifies the output vector y. |
The v?Conj function performs element by element conjugation of the vector.
No special values are specified. The function does not raise floating-point exceptions.