1CCOS(3) Linux Programmer's Manual CCOS(3)
2
3
4
6 ccos, ccosf, ccosl - complex cosine function
7
9 #include <complex.h>
10
11 double complex ccos(double complex z);
12 float complex ccosf(float complex z);
13 long double complex ccosl(long double complex z);
14
15 Link with -lm.
16
18 The complex cosine function is defined as:
19
20 ccos(z) = (exp(i * z) + exp(-i * z)) / 2
21
23 These functions first appeared in glibc in version 2.1.
24
26 C99.
27
29 cabs(3), csin(3), ctan(3), complex(7)
30
32 This page is part of release 3.22 of the Linux man-pages project. A
33 description of the project, and information about reporting bugs, can
34 be found at http://www.kernel.org/doc/man-pages/.
35
36
37
38 2008-08-11 CCOS(3)