CONJG intrinsic function

Standard: F77 F90 F95 F2003 F2008 F2018 Example program


<Syntax>

CONJG ( Z )

Z : Complex;

Result : Same type and kind as Z.

<Semantics>

The result is the complex value whose real part is the same as Z, and the imaginary part is the negative of that of Z, i.e. CMPLX(REAL(Z),-AIMAG(Z),KIND(Z)).

Like many intrinsic functions, this is elemental; the result has the same shape as Z, with the operation being applied elementwise.

<Related>

COMPLEX type