OSDN Git Service

(split) Import translated manuals from JM CVS Repository.
[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 sqrt (3),
57 .BR complex (7)