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, double complex z);
12 float complex cpowf(float complex x, float complex z);
13 long double complex cpowl(long double complex x,
14 long double complex 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 └────────────────────────────────────────────┴───────────────┴─────────┘
34
36 C99, POSIX.1-2001, POSIX.1-2008.
37
39 cabs(3), pow(3), complex(7)
40
42 This page is part of release 5.12 of the Linux man-pages project. A
43 description of the project, information about reporting bugs, and the
44 latest version of this page, can be found at
45 https://www.kernel.org/doc/man-pages/.
46
47
48
49 2021-03-22 CPOW(3)