1CONJ(P) POSIX Programmer's Manual CONJ(P)
2
3
4
6 conj, conjf, conjl - complex conjugate functions
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
17 These functions shall compute the complex conjugate of z, by reversing
18 the sign of its imaginary part.
19
21 These functions return the complex conjugate value.
22
24 No errors are defined.
25
26 The following sections are informative.
27
29 None.
30
32 None.
33
35 None.
36
38 None.
39
41 carg() , cimag() , cproj() , creal() , the Base Definitions volume of
42 IEEE Std 1003.1-2001, <complex.h>
43
45 Portions of this text are reprinted and reproduced in electronic form
46 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
47 -- Portable Operating System Interface (POSIX), The Open Group Base
48 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
49 Electrical and Electronics Engineers, Inc and The Open Group. In the
50 event of any discrepancy between this version and the original IEEE and
51 The Open Group Standard, the original IEEE and The Open Group Standard
52 is the referee document. The original Standard can be obtained online
53 at http://www.opengroup.org/unix/online.html .
54
55
56
57IEEE/The Open Group 2003 CONJ(P)