1CONJ(3) complex math routines CONJ(3)
2
3
4
6 conj, conjf, conjl - calculate the complex conjugate
7
9 #include <complex.h>
10
11 double complex conj(double complex z);
12 float complex conjf(float complex z);
13 long double complex conjl(long double complex z);
14
15 Link with -lm.
16
18 The conj() function returns the complex conjugate value of z. That is
19 the value obtained by changing the sign of the imaginary part.
20
21 One has cabs(z) = csqrt(z * conj(z)).
22
24 C99
25
27 cabs(3), sqrt(3), complex(7)
28
29
30
31 2002-07-28 CONJ(3)