OSDN Git Service

(split) LDP: Restore and add Copyrights for draft pages
[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 .\"
13 .\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
14 .\"         all rights reserved.
15 .\" Translated Thu Jul 24 01:37:31 JST 2003
16 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
17 .\"
18 .TH CIMAG 3 2013\-06\-21 "" "Linux Programmer's Manual"
19 .SH 名前
20 cimag, cimagf, cimagl \- 複素数の虚部を取得する
21 .SH 書式
22 \fB#include <complex.h>\fP
23 .sp
24 \fBdouble cimag(double complex \fP\fIz\fP\fB);\fP
25 .br
26 \fBfloat cimagf(float complex \fP\fIz\fP\fB);\fP
27 .br
28 \fBlong double cimagl(long double complex \fP\fIz\fP\fB);\fP
29 .sp
30 \fI\-lm\fP でリンクする。
31 .SH 説明
32 \fBcimag\fP()  関数は複素数 \fIz\fP の虚部を返す。
33 .LP
34 次の関係が成立する:
35 .nf
36
37     z = creal(z) + I * cimag(z)
38 .fi
39 .SH バージョン
40 これらの関数は glibc バージョン 2.1 で初めて登場した。
41 .SH 属性
42 .SS "マルチスレッディング (pthreads(7) 参照)"
43 関数 \fBcimag\fP(), \fBcimagf\fP(), and \fBcimagl\fP() はスレッドセーフである。
44 .SH 準拠
45 C99.
46 .SH 注意
47 gcc では __imag__ を使うこともできるが、 これは GNU による拡張である。
48 .SH 関連項目
49 \fBcabs\fP(3), \fBcreal\fP(3), \fBcomplex\fP(7)
50 .SH この文書について
51 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.53 の一部
52 である。プロジェクトの説明とバグ報告に関する情報は
53 http://www.kernel.org/doc/man\-pages/ に書かれている。