1cpow(3) Library Functions Manual cpow(3)
2
3
4
6 cpow, cpowf, cpowl - complex power function
7
9 Math library (libm, -lm)
10
12 #include <complex.h>
13
14 double complex cpow(double complex x, double complex z);
15 float complex cpowf(float complex x, float complex z);
16 long double complex cpowl(long double complex x,
17 long double complex z);
18
20 These functions calculate x raised to the power z (with a branch cut
21 for x along the negative real axis).
22
24 For an explanation of the terms used in this section, see at‐
25 tributes(7).
26
27 ┌────────────────────────────────────────────┬───────────────┬─────────┐
28 │Interface │ Attribute │ Value │
29 ├────────────────────────────────────────────┼───────────────┼─────────┤
30 │cpow(), cpowf(), cpowl() │ Thread safety │ MT-Safe │
31 └────────────────────────────────────────────┴───────────────┴─────────┘
32
34 C11, POSIX.1-2008.
35
37 glibc 2.1. C99, POSIX.1-2001.
38
40 cabs(3), pow(3), complex(7)
41
42
43
44Linux man-pages 6.04 2023-03-30 cpow(3)