OSDN Git Service

3e4d92e7f6a36ea5db25ace15aae83e5f4e4558c
[linuxjm/LDP_man-pages.git] / draft / man3 / creal.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 .\"*******************************************************************
8 .\"
9 .\" This file was generated with po4a. Translate the source file.
10 .\"
11 .\"*******************************************************************
12 .TH CREAL 3 2008\-08\-11 "" "Linux Programmer's Manual"
13 .SH 名前
14 creal, crealf, creall \- 複素数の実部を取得する
15 .SH 書式
16 \fB#include <complex.h>\fP
17 .sp
18 \fBdouble creal(double complex \fP\fIz\fP\fB);\fP
19 .br
20 \fBfloat crealf(float complex \fP\fIz\fP\fB);\fP
21 .br
22 \fBlong double creall(long double complex \fP\fIz\fP\fB);\fP
23 .sp
24 \fI\-lm\fP でリンクする。
25 .SH 説明
26 \fBcreal\fP()  関数は複素数 \fIz\fP の実部を返す。
27 .LP
28 次の関係が成立する:
29 .nf
30
31     z = creal(z) + I * cimag(z)
32 .fi
33 .SH バージョン
34 これらの関数は glibc バージョン 2.1 で初めて登場した。
35 .SH 準拠
36 C99.
37 .SH 注意
38 gcc では __real__ を使うこともできるが、 これは GNU による拡張である。
39 .SH 関連項目
40 \fBcabs\fP(3), \fBcimag\fP(3), \fBcomplex\fP(7)
41 .SH この文書について
42 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
43 である。プロジェクトの説明とバグ報告に関する情報は
44 http://www.kernel.org/doc/man\-pages/ に書かれている。