OSDN Git Service

5f86bfc30cf05f1e14d6e14589648a423918716e
[linuxjm/LDP_man-pages.git] / draft / 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 2013\-06\-21 "" "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 ATTRIBUTES
36 .SS "Multithreading (see pthreads(7))"
37 The \fBcimag\fP(), \fBcimagf\fP(), and \fBcimagl\fP()  functions are thread\-safe.
38 .SH 準拠
39 C99.
40 .SH 注意
41 gcc では __imag__ を使うこともできるが、 これは GNU による拡張である。
42 .SH 関連項目
43 \fBcabs\fP(3), \fBcreal\fP(3), \fBcomplex\fP(7)
44 .SH この文書について
45 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
46 である。プロジェクトの説明とバグ報告に関する情報は
47 http://www.kernel.org/doc/man\-pages/ に書かれている。