Performs element by element conjugation of the vector.
The FORTRAN 77 interfaces are specified in the mkl_vml.f77 include file, the Fortran 95 interfaces are specified in the mkl_vml.f90 include file, and the C interfaces are specified in the mkl_vml_functions.h include file.
| Name | Type | Description | 
|---|---|---|
| n | FORTRAN 77: INTEGER Fortran 90: INTEGER, INTENT(IN) C: const int | Specifies the number of elements to be calculated. | 
| a | FORTRAN 77: COMPLEX, INTENT(IN) for vcconj DOUBLE COMPLEX, INTENT(IN) for vzconj Fortran 90: COMPLEX, INTENT(IN) for vcconj DOUBLE COMPLEX, INTENT(IN) for vzconj C: const MKL_Complex8* for vcConj const MKL_Complex16* for vzConj | FORTRAN: Array that specifies the input vector a. C: Pointer to an array that contains the input vector a. | 
| Name | Type | Description | 
|---|---|---|
| y | FORTRAN 77: COMPLEX, for vcconj DOUBLE COMPLEX for vzconj Fortran 90: COMPLEX, INTENT(OUT) for vcconj DOUBLE COMPLEX, INTENT(OUT) for vzconj C: MKL_Complex8* for vcConj MKL_Complex16* for vzConj | FORTRAN: Array that specifies the output vector y. C: Pointer to an array that contains 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.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.