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 These functions calculate 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 For an explanation of the terms used in this section, see at‐
27 tributes(7).
28
29 ┌─────────────────────────┬───────────────┬─────────┐
30 │Interface │ Attribute │ Value │
31 ├─────────────────────────┼───────────────┼─────────┤
32 │cpow(), cpowf(), cpowl() │ Thread safety │ MT-Safe │
33 └─────────────────────────┴───────────────┴─────────┘
35 C99, POSIX.1-2001, POSIX.1-2008.
36
38 cabs(3), pow(3), complex(7)
39
41 This page is part of release 5.10 of the Linux man-pages project. A
42 description of the project, information about reporting bugs, and the
43 latest version of this page, can be found at
44 https://www.kernel.org/doc/man-pages/.
45
46
47
48 2015-04-19 CPOW(3)