Computes the complex conjugate.
#include <complex.h>
double complex conj (z)
double complex z;
float complex conjf (z)
float complex z;
long double complex conjl (z)
long double complex z;
The conj, conjf, or conjl subroutines compute the complex conjugate of z, by reversing the sign of its imaginary part.
Item | Description |
---|---|
z | Specifies the value to be computed. |
The conj, conjf, or conjl subroutines return the complex conjugate value.