v?Conj

Performs element by element conjugation of the vector.

Syntax

FORTRAN:

call vcconj( n, a, y )

call vmcconj( n, a, y, mode )

call vzconj( n, a, y )

call vmzconj( n, a, y, mode )

C:

vcConj( n, a, y );

vmcConj( n, a, y, mode );

vzConj( n, a, y );

vmzConj( n, a, y, mode );

Include Files

Input Parameters

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, vmcconj

DOUBLE COMPLEX, INTENT(IN) for vzconj, vmzconj

Fortran 90: COMPLEX, INTENT(IN) for vcconj, vmcconj

DOUBLE COMPLEX, INTENT(IN) for vzconj, vmzconj

C: const MKL_Complex8* for vcConj, vmcconj

const MKL_Complex16* for vzConj, vmzconj

FORTRAN: Array that specifies the input vector a.

C: Pointer to an array that contains the input vector a.

mode

FORTRAN 77: INTEGER*8

Fortran 90: INTEGER(KIND=8), INTENT(IN)

C: const MKL_INT64

Overrides global VML mode setting for this function call. See vmlSetMode for possible values and their description.

Output Parameters

Name

Type

Description

y

FORTRAN 77: COMPLEX, for vcconj, vmcconj

DOUBLE COMPLEX for vzconj, vmzconj

Fortran 90: COMPLEX, INTENT(OUT) for vcconj, vmcconj

DOUBLE COMPLEX, INTENT(OUT) for vzconj, vmzconj

C: MKL_Complex8* for vcConj, vmcconj

MKL_Complex16* for vzConj, vmzconj

FORTRAN: Array that specifies the output vector y.

C: Pointer to an array that contains 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.


Submit feedback on this help topic