1CPOW(3) Linux Programmer's Manual CPOW(3)
2
3
4
6 cpow, cpowf, cpowl - complex power function
7
9 #include <complex.h>
10
11 double complex cpow(double complex x, complex double z);
12 float complex cpowf(float complex x, complex float z);
13 long double complex cpowl(long double complex x,
14 complex long double z);
15
16 Link with -lm.
17
19 The function calculates x raised to the power z. (With a branch cut
20 for x along the negative real axis.)
21
23 These functions first appeared in glibc in version 2.1.
24
26 C99.
27
29 cabs(3), pow(3), complex(7)
30
32 This page is part of release 3.53 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 CPOW(3)