OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / cpow.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\"
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
5 .\" %%%LICENSE_END
6 .\"
7 .TH CPOW 3 2008-08-11 "" "Linux Programmer's Manual"
8 .SH NAME
9 cpow, cpowf, cpowl \- complex power function
10 .SH SYNOPSIS
11 .nf
12 .B #include <complex.h>
13 .sp
14 .BI "double complex cpow(double complex " x ", complex double " z ");"
15 .br
16 .BI "float complex cpowf(float complex " x ", complex float " z ");"
17 .br
18 .BI "long double complex cpowl(long double complex " x ,
19 .BI "                          complex long double " z ");"
20 .sp
21 Link with \fI\-lm\fP.
22 .fi
23 .SH DESCRIPTION
24 The function calculates
25 .I x
26 raised to the power
27 .IR z .
28 (With a branch cut for
29 .I x
30 along the negative real axis.)
31 .SH VERSIONS
32 These functions first appeared in glibc in version 2.1.
33 .SH CONFORMING TO
34 C99.
35 .SH SEE ALSO
36 .BR cabs (3),
37 .BR pow (3),
38 .BR complex (7)
39 .SH COLOPHON
40 This page is part of release 3.68 of the Linux
41 .I man-pages
42 project.
43 A description of the project,
44 information about reporting bugs,
45 and the latest version of this page,
46 can be found at
47 \%http://www.kernel.org/doc/man\-pages/.