CONJ(3) Library Functions Manual CONJ(3)

conjcomplex conjugation function

#include <complex.h>

double complex
conj(double complex z);

long double complex
conjl(long double complex z);

float complex
conjf(float complex z);

(z) computes the complex conjugate of a complex floating-point number z.

If z = x+iy, then (z) = x-iy.

If y is NaN, conj(x+yi) = x-yi; the sign bit of the NaN has been changed.

complex(3)

The conj() function conforms to ISO/IEC 9899:2011.

December 11, 2006 BSD 4