1CPOW(3)                    Linux Programmer's Manual                   CPOW(3)
2
3
4

NAME

6       cpow, cpowf, cpowl - complex power function
7

SYNOPSIS

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

DESCRIPTION

19       These  functions  calculate  x raised to the power z (with a branch cut
20       for x along the negative real axis.)
21

VERSIONS

23       These functions first appeared in glibc in version 2.1.
24

ATTRIBUTES

26       For an  explanation  of  the  terms  used  in  this  section,  see  at‐
27       tributes(7).
28
29       ┌────────────────────────────────────────────┬───────────────┬─────────┐
30Interface                                   Attribute     Value   
31       ├────────────────────────────────────────────┼───────────────┼─────────┤
32cpow(), cpowf(), cpowl()                    │ Thread safety │ MT-Safe │
33       └────────────────────────────────────────────┴───────────────┴─────────┘
34

CONFORMING TO

36       C99, POSIX.1-2001, POSIX.1-2008.
37

SEE ALSO

39       cabs(3), pow(3), complex(7)
40

COLOPHON

42       This  page  is  part of release 5.13 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)
Impressum