Compute the complex conjugate of a complex number
#include <complex.h> double complex conj(double complex z); float complex conjf(float complex z); long double complex conjl(long double complex z);
These functions compute the complex conjugate of the complex number specified by z by reversing the sign of the imaginary part.
The complex conjugate of z.
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | No |
| Thread | Yes |