OSDN Git Service

(split) LDP: Update the version to 3.53 in PO files
[linuxjm/LDP_man-pages.git] / release / man3 / catan.3
index 9774fe2..e965ba9 100644 (file)
@@ -1,52 +1,45 @@
 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
 .\" and Copyright (C) 2011 Michael Kerrisk <mtk.manpages@gamil.com>
+.\"
+.\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
 .\" Distributed under GPL
+.\" %%%LICENSE_END
 .\"
-.\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
-.\"         all rights reserved.
-.\" Translated Thu Jul 24 00:22:25 JST 2003
-.\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
+.\"*******************************************************************
 .\"
-.\"WORD:       arc sine        µÕÀµ¸¹
-.\"WORD:       arc cosine      µÕ;¸¹
-.\"WORD:       arc tangent     µÕÀµÀÜ
-.\"WORD:       real part       ¼ÂÉô
-.\"WORD:       imaginary part  µõÉô
+.\" This file was generated with po4a. Translate the source file.
 .\"
-.TH CATAN 3 2011-09-15 "" "Linux Programmer's Manual"
-.SH Ì¾Á°
-catan, catanf, catanl \- Ê£ÁÇ¿ô¤ÎµÕÀµÀÜ (arc tangent)
-.SH ½ñ¼°
-.B #include <complex.h>
+.\"*******************************************************************
+.TH CATAN 3 2011\-09\-15 "" "Linux Programmer's Manual"
+.SH 名前
+catan, catanf, catanl \- 複素数の逆正接 (arc tangent)
+.SH 書式
+\fB#include <complex.h>\fP
 .sp
-.BI "double complex catan(double complex " z );
+\fBdouble complex catan(double complex \fP\fIz\fP\fB);\fP
 .br
-.BI "float complex catanf(float complex " z );
+\fBfloat complex catanf(float complex \fP\fIz\fP\fB);\fP
 .br
-.BI "long double complex catanl(long double complex " z );
+\fBlong double complex catanl(long double complex \fP\fIz\fP\fB);\fP
 .sp
-\fI\-lm\fP ¤Ç¥ê¥ó¥¯¤¹¤ë¡£
-.SH ÀâÌÀ
-.BR catan ()
-´Ø¿ô¤ÏÊ£ÁÇ¿ô
-.I z
-¤ÎµÕÀµÀÜ (arc tangent) ¤ò·×»»¤¹¤ë¡£
-\fIy = catan(z)\fP ¤Ê¤é¤Ð¡¢ \fIz = ctan(y)\fP ¤¬À®Î©¤¹¤ë¡£
-.I y
-¤Î¼ÂÉô¤ÎÃͤ϶è´Ö [\-pi/2,pi/2] ¤«¤éÁªÂò¤µ¤ì¤ë¡£
+\fI\-lm\fP でリンクする。
+.SH 説明
+\fBcatan\fP() 関数は複素数 \fIz\fP の逆正接 (arc tangent) を計算する。
+\fIy = catan(z)\fP ならば、 \fIz = ctan(y)\fP が成立する。
+\fIy\fP の実部の値は区間 [\-pi/2,pi/2] から選択される。
 .LP
-¼¡¤Î´Ø·¸¤¬À®Î©¤¹¤ë:
+次の関係が成立する:
 .nf
 
     catan(z) = (clog(1 + i * z) \- clog(1 \- i * z)) / (2 * i)
 .fi
-.SH ¥Ð¡¼¥¸¥ç¥ó
-¤³¤ì¤é¤Î´Ø¿ô¤Ï glibc ¥Ð¡¼¥¸¥ç¥ó 2.1 ¤Ç½é¤á¤ÆÅо줷¤¿¡£
-.SH ½àµò
+.SH バージョン
+これらの関数は glibc バージョン 2.1 で初めて登場した。
+.SH 準拠
 C99.
-.SH Îã
+.SH 
 .nf
-/* Link with "\-lm" */
+/* "\-lm" でリンクする */
 
 #include <complex.h>
 #include <stdlib.h>
@@ -60,23 +53,24 @@ main(int argc, char *argv[])
     double complex i = I;
 
     if (argc != 3) {
-        fprintf(stderr, "Usage: %s <real> <imag>\\n", argv[0]);
+        fprintf(stderr, "Usage: %s <real> <imag>\en", argv[0]);
         exit(EXIT_FAILURE);
     }
 
     z = atof(argv[1]) + atof(argv[2]) * I;
 
     c = catan(z);
-    printf("catan() = %6.3f %6.3f*i\\n", creal(c), cimag(c));
+    printf("catan() = %6.3f %6.3f*i\en", creal(c), cimag(c));
 
     f = (clog(1 + i * z) \- clog(1 \- i * z)) / (2 * i);
-    printf("formula = %6.3f %6.3f*i\\n", creal(f2), cimag(f2));
+    printf("formula = %6.3f %6.3f*i\en", creal(f2), cimag(f2));
 
     exit(EXIT_SUCCESS);
 }
 .fi
-.SH ´ØÏ¢¹àÌÜ
-.BR ccos (3),
-.BR clog (3),
-.BR ctan (3),
-.BR complex (7)
+.SH 関連項目
+\fBccos\fP(3), \fBclog\fP(3), \fBctan\fP(3), \fBcomplex\fP(7)
+.SH この文書について
+この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.53 の一部
+である。プロジェクトの説明とバグ報告に関する情報は
+http://www.kernel.org/doc/man\-pages/ に書かれている。