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, 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

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
27       attributes(7).
28
29       ┌─────────────────────────┬───────────────┬─────────┐
30Interface                Attribute     Value   
31       ├─────────────────────────┼───────────────┼─────────┤
32cpow(), cpowf(), cpowl() │ Thread safety │ MT-Safe │
33       └─────────────────────────┴───────────────┴─────────┘

CONFORMING TO

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

SEE ALSO

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

COLOPHON

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