CONJ(3) Library Functions Manual CONJ(3)

conj, conjf, conjlcompute the complex conjugate

#include <complex.h>

double complex
conj(double complex z);

float complex
conjf(float complex z);

long double complex
conjl(long double complex z);

The (), () and () functions reverse the sign of the imaginary part of z, producing the complex conjugate.

The conj(), conjf() and conjl() functions return the complex conjugate of the complex number z.

carg(3)

The conj(), conjf() and conjl() functions conform to ISO/IEC 9899:1999 (“ISO C99”).

January 25, 2019 OpenBSD 7.6