OSDN Git Service

(split) LDP: Release pages for LDP v3.39.
[linuxjm/LDP_man-pages.git] / release / man3 / cimag.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\" Distributed under GPL
3 .\"
4 .\"*******************************************************************
5 .\"
6 .\" This file was generated with po4a. Translate the source file.
7 .\"
8 .\"*******************************************************************
9 .TH CIMAG 3 2008\-08\-11 "" "Linux Programmer's Manual"
10 .SH 名前
11 cimag, cimagf, cimagl \- 複素数の虚部を取得する
12 .SH 書式
13 \fB#include <complex.h>\fP
14 .sp
15 \fBdouble cimag(double complex \fP\fIz\fP\fB);\fP
16 .br
17 \fBfloat cimagf(float complex \fP\fIz\fP\fB);\fP
18 .br
19 \fBlong double cimagl(long double complex \fP\fIz\fP\fB);\fP
20 .sp
21 \fI\-lm\fP でリンクする。
22 .SH 説明
23 \fBcimag\fP()  関数は複素数 \fIz\fP の虚部を返す。
24 .LP
25 次の関係が成立する:
26 .nf
27
28     z = creal(z) + I * cimag(z)
29 .fi
30 .SH バージョン
31 これらの関数は glibc バージョン 2.1 で初めて登場した。
32 .SH 準拠
33 C99.
34 .SH 注意
35 gcc では __imag__ を使うこともできるが、 これは GNU による拡張である。
36 .SH 関連項目
37 \fBcabs\fP(3), \fBcreal\fP(3), \fBcomplex\fP(7)