conj(), conjf(), conjl()

Compute the complex conjugate of a complex number

Synopsis:

#include <complex.h>

double complex conj(double complex z);

float complex conjf(float complex z);

long double complex conjl(long double complex z);

Arguments:

z
The complex value that you want to get the complex conjugate of.

Library:

libm

Use the -l m option to qcc to link against this library.

Description:

These functions compute the complex conjugate of the complex number specified by z by reversing the sign of the imaginary part.

Returns:

The complex conjugate of z.

Classification:

ANSI, POSIX 1003.1

Safety:  
Cancellation point No
Interrupt handler No
Signal handler No
Thread Yes