OSDN Git Service

(split) DP: release pages (catch up to 3.50).
[linuxjm/LDP_man-pages.git] / release / man3 / cimag.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 CIMAG 3 2008\-08\-11 "" "Linux Programmer's Manual"
13 .SH 名前
14 cimag, cimagf, cimagl \- 複素数の虚部を取得する
15 .SH 書式
16 \fB#include <complex.h>\fP
17 .sp
18 \fBdouble cimag(double complex \fP\fIz\fP\fB);\fP
19 .br
20 \fBfloat cimagf(float complex \fP\fIz\fP\fB);\fP
21 .br
22 \fBlong double cimagl(long double complex \fP\fIz\fP\fB);\fP
23 .sp
24 \fI\-lm\fP でリンクする。
25 .SH 説明
26 \fBcimag\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 では __imag__ を使うこともできるが、 これは GNU による拡張である。
39 .SH 関連項目
40 \fBcabs\fP(3), \fBcreal\fP(3), \fBcomplex\fP(7)
41 .SH この文書について
42 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.50 の一部
43 である。プロジェクトの説明とバグ報告に関する情報は
44 http://www.kernel.org/doc/man\-pages/ に書かれている。