Developer Reference for Intel® oneAPI Math Kernel Library for Fortran
v?Conj
vcConj vzConj vmcConj vmzConj Performs element by element conjugation of the vector.
Syntax
call vcconj ( n , a , y )
call vcconji(n, a, inca, y, incy)
call vmcconj ( n , a , y , mode )
call vmcconji(n, a, inca, y, incy, mode)
call vzconj ( n , a , y )
call vzconji(n, a, inca, y, incy)
call vmzconj ( n , a , y , mode )
call vmzconji(n, a, inca, y, incy, mode)
Include Files
mkl_vml.f90
Input Parameters
Name |
Type |
Description |
|---|---|---|
n |
INTEGER, INTENT(IN) |
Specifies the number of elements to be calculated. |
a |
Fortran 77: DOUBLE COMPLEX , INTENT(IN) for vzconj , vmzconjFortran 90: COMPLEX , INTENT(IN) for vcconj , vmcconjFortran 90: DOUBLE COMPLEX , INTENT(IN) for vzconj , vmzconj |
Array that specifies the input vector a . |
inca , incy |
INTEGER, INTENT(IN) |
Specifies increments for the elements of a and y . |
mode |
INTEGER(KIND=8), INTENT(IN) |
Overrides global VM mode setting for this function call. See vmlSetMode (Sets a new mode for VM functions according to the mode parameter and stores the previous VM mode to oldmode.) for possible values and their description. |
Output Parameters
Name |
Type |
Description |
|---|---|---|
y |
Fortran 77: DOUBLE COMPLEX for vzconj , vmzconjFortran 90: COMPLEX , INTENT(OUT) for vcconj , vmcconjFortran 90: DOUBLE COMPLEX , INTENT(OUT) for vzconj , vmzconj |
Array that specifies the output vector y . |
Description
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.