1CONJ(3) Linux Programmer's Manual 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:
22
23 cabs(z) = csqrt(z * conj(z))
24
26 These functions first appeared in glibc in version 2.1.
27
29 Multithreading (see pthreads(7))
30 The conj(), conjf(), and conjl() functions are thread-safe.
31
33 C99.
34
36 cabs(3), csqrt(3), complex(7)
37
39 This page is part of release 3.53 of the Linux man-pages project. A
40 description of the project, and information about reporting bugs, can
41 be found at http://www.kernel.org/doc/man-pages/.
42
43
44
45 2013-06-21 CONJ(3)