OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / LDP_man-pages / release / man3 / cexp.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 Thu Jul 24 02:05:20 JST 2003
7 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
8 .\" 
9 .\"WORD:        exponential             指数
10 .\"WORD:        natural logarithm       自然対数
11 .\"WORD:        base                    底
12 .\" 
13 .TH CEXP 3 2008-08-06 "" "Linux Programmer's Manual"
14 .SH 名前
15 cexp, cexpf, cexpl \- 複素数の指数関数
16 .SH 書式
17 .B #include <complex.h>
18 .sp
19 .BI "double complex cexp(double complex " z ");"
20 .br
21 .BI "float complex cexpf(float complex " z ");"
22 .br
23 .BI "long double complex cexpl(long double complex " z ");"
24 .sp
25 \fI\-lm\fP でリンクする。
26 .SH 説明
27 この関数は e (2.71828..., 自然対数の底) の \fIz\fR 乗を計算する。
28 .LP
29 次の関係が成立する:
30 .nf
31
32     cexp(I * z) = ccos(z) + I * csin(z)
33 .fi
34 .SH バージョン
35 これらの関数は glibc バージョン 2.1 で初めて登場した。
36 .SH 準拠
37 C99.
38 .SH 関連項目
39 .BR cabs (3),
40 .BR cexp2 (3),
41 .BR clog (3),
42 .BR cpow (3),
43 .BR complex (7)