OSDN Git Service

b699a13e43524e34e4f1ef4c83dd589c91a8a335
[linuxjm/LDP_man-pages.git] / draft / man3 / conj.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\" Distributed under GPL
3 .\"
4 .\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
5 .\"         all rights reserved.
6 .\" Translated Thu Jul 24 02:38:18 JST 2003
7 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
8 .\"
9 .\"WORD:        complex conjugate       複素共役
10 .\"WORD:        imaginary part          虚部
11 .\"
12 .TH CONJ 3 2008-08-11 "" "Linux Programmer's Manual"
13 .\"O .SH NAME
14 .SH 名前
15 .\"O conj, conjf, conjl \- calculate the complex conjugate
16 conj, conjf, conjl \- 複素共役を計算する
17 .\"O .SH SYNOPSIS
18 .SH 書式
19 .B #include <complex.h>
20 .sp
21 .BI "double complex conj(double complex " z );
22 .br
23 .BI "float complex conjf(float complex " z );
24 .br
25 .BI "long double complex conjl(long double complex " z );
26 .sp
27 .\"O Link with \fI\-lm\fP.
28 \fI\-lm\fP でリンクする。
29 .\"O .SH DESCRIPTION
30 .SH 説明
31 .\"O The
32 .\"O .BR conj ()
33 .\"O function returns the complex conjugate value of
34 .\"O .IR z .
35 .\"O That is the value obtained by changing the sign of the imaginary part.
36 .BR conj ()
37 関数は \fIz\fR の複素共役を返す。
38 その値は虚部の符号を反転して得られる。
39 .LP
40 .\"O One has:
41 次の関係が成立する:
42 .nf
43
44     cabs(z) = csqrt(z * conj(z))
45 .fi
46 .\"O .SH VERSIONS
47 .SH バージョン
48 .\"O These functions first appeared in glibc in version 2.1.
49 これらの関数は glibc バージョン 2.1 で初めて登場した。
50 .\"O .SH "CONFORMING TO"
51 .SH 準拠
52 C99.
53 .\"O .SH "SEE ALSO"
54 .SH 関連項目
55 .BR cabs (3),
56 .BR csqrt (3),
57 .BR complex (7)