.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" Distributed under GPL .\" .\" Japanese Version Copyright (c) 2003 Akihiro MOTOKI .\" all rights reserved. .\" Translated Thu Jul 24 02:05:20 JST 2003 .\" by Akihiro MOTOKI .\" .\"WORD: exponential 指数 .\"WORD: natural logarithm 自然対数 .\"WORD: base 底 .\" .TH CEXP 3 2008-08-06 "" "Linux Programmer's Manual" .\"O .SH NAME .SH 名前 .\"O cexp, cexpf, cexpl \- complex exponential function cexp, cexpf, cexpl \- 複素数の指数関数 .\"O .SH SYNOPSIS .SH 書式 .B #include .sp .BI "double complex cexp(double complex " z ");" .br .BI "float complex cexpf(float complex " z ");" .br .BI "long double complex cexpl(long double complex " z ");" .sp .\"O Link with \fI\-lm\fP. \fI\-lm\fP でリンクする。 .\"O .SH DESCRIPTION .SH 説明 .\"O The function calculates e (2.71828..., the base of natural logarithms) .\"O raised to the power of .\"O .IR z . この関数は e (2.71828..., 自然対数の底) の \fIz\fR 乗を計算する。 .LP .\"O One has: 次の関係が成立する: .nf cexp(I * z) = ccos(z) + I * csin(z) .fi .\"O .SH VERSIONS .SH バージョン .\"O These functions first appeared in glibc in version 2.1. これらの関数は glibc バージョン 2.1 で初めて登場した。 .\"O .SH "CONFORMING TO" .SH 準拠 C99. .\"O .SH "SEE ALSO" .SH 関連項目 .BR cabs (3), .BR clog (3), .BR cpow (3), .BR complex (7)