1CONJ(3)                    Linux Programmer's Manual                   CONJ(3)
2
3
4

NAME

6       conj, conjf, conjl - calculate the complex conjugate
7

SYNOPSIS

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

DESCRIPTION

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

VERSIONS

26       These functions first appeared in glibc in version 2.1.
27

CONFORMING TO

29       C99.
30

SEE ALSO

32       cabs(3), sqrt(3), complex(7)
33

COLOPHON

35       This page is part of release 3.22 of the Linux  man-pages  project.   A
36       description  of  the project, and information about reporting bugs, can
37       be found at http://www.kernel.org/doc/man-pages/.
38
39
40
41                                  2008-08-11                           CONJ(3)
Impressum