OSDN Git Service

fb0e9159771cb611a429bb59ff87b7e2355cb0ff
[linuxjm/LDP_man-pages.git] / draft / 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 .\"O .SH NAME
15 .SH 名前
16 .\"O cexp, cexpf, cexpl \- complex exponential function
17 cexp, cexpf, cexpl \- 複素数の指数関数
18 .\"O .SH SYNOPSIS
19 .SH 書式
20 .B #include <complex.h>
21 .sp
22 .BI "double complex cexp(double complex " z ");"
23 .br
24 .BI "float complex cexpf(float complex " z ");"
25 .br
26 .BI "long double complex cexpl(long double complex " z ");"
27 .sp
28 .\"O Link with \fI\-lm\fP.
29 \fI\-lm\fP でリンクする。
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The function calculates e (2.71828..., the base of natural logarithms)
33 .\"O raised to the power of
34 .\"O .IR z .
35 この関数は e (2.71828..., 自然対数の底) の \fIz\fR 乗を計算する。
36 .LP
37 .\"O One has:
38 次の関係が成立する:
39 .nf
40
41     cexp(I * z) = ccos(z) + I * csin(z)
42 .fi
43 .\"O .SH VERSIONS
44 .SH バージョン
45 .\"O These functions first appeared in glibc in version 2.1.
46 これらの関数は glibc バージョン 2.1 で初めて登場した。
47 .\"O .SH "CONFORMING TO"
48 .SH 準拠
49 C99.
50 .\"O .SH "SEE ALSO"
51 .SH 関連項目
52 .BR cabs (3),
53 .BR cexp2 (3),
54 .BR clog (3),
55 .BR cpow (3),
56 .BR complex (7)