OSDN Git Service

fc1007f769837e2463b66b6a2ada6f30b7337024
[linuxjm/LDP_man-pages.git] / draft / man3 / cpow.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\" Distributed under GPL
3 .\"
4 .\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
5 .\"         all rights reserved.
6 .\" Translated 2003-09-02, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
7 .\"
8 .\"WORD:        power           累乗
9 .\"WORD:        branch cut      分枝切断
10 .\"
11 .TH CPOW 3 2008-08-11 "" "Linux Programmer's Manual"
12 .\"O .SH NAME
13 .\"O cpow, cpowf, cpowl \- complex power function
14 .SH 名前
15 cpow, cpowf, cpowl \- 複素数の累乗関数
16 .\"O .SH SYNOPSIS
17 .SH 書式
18 .nf
19 .B #include <complex.h>
20 .sp
21 .BI "double complex cpow(double complex " x ", complex double " z ");"
22 .br
23 .BI "float complex cpowf(float complex " x ", complex float " z ");"
24 .br
25 .BI "long double complex cpowl(long double complex " x ,
26 .BI "                          complex long double " z ");"
27 .sp
28 .\"O Link with \fI\-lm\fP.
29 \fI\-lm\fP でリンクする。
30 .fi
31 .\"O .SH DESCRIPTION
32 .SH 説明
33 .\"O The function calculates
34 .\"O .I x
35 .\"O raised to the power
36 .\"O .IR z .
37 .\"O (With a branch cut for
38 .\"O .I x
39 .\"O along the negative real axis.)
40 この関数は
41 .I x
42
43 .I z
44 乗を計算する
45 (実軸の負の部分に沿って
46 .I x
47 の分枝切断 (branch cut) がある)。
48 .\"O .SH VERSIONS
49 .SH バージョン
50 .\"O These functions first appeared in glibc in version 2.1.
51 これらの関数は glibc バージョン 2.1 で初めて登場した。
52 .\"O .SH "CONFORMING TO"
53 .SH 準拠
54 C99.
55 .\"O .SH "SEE ALSO"
56 .SH 関連項目
57 .BR cabs (3),
58 .BR pow (3),
59 .BR complex (7)