OSDN Git Service

(split) LDP: draft snapshot generated from latest ja.po files.
[linuxjm/LDP_man-pages.git] / draft / man3 / sinh.3
index 5b1108e..ef267f0 100644 (file)
 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
 .\" Modified 1996-06-08 by aeb
 .\" Modified 2002-07-27 by Walter Harms
-.\"    (walter.harms@informatik.uni-oldenburg.de)
+.\"    (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.\" Japanese Version Copyright (c) 1996 Kenji Kajiwara and Kentaro Ogawa
-.\"         all rights reserved.
-.\" Translated Sat, 13 Jul 1996 17:54:30 JST
-.\"         by Kenji Kajiwara and Kentaro Ogawa
-.\" Updated & Modified Thu Feb 17 22:50:25 JST 2005
-.\"         by Yuichi SATO <ysato444@yahoo.co.jp>
-.\" Updated 2008-09-16, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
+.\"*******************************************************************
 .\"
-.TH SINH 3  2010-09-20 "" "Linux Programmer's Manual"
-.\"O .SH NAME
+.\" This file was generated with po4a. Translate the source file.
+.\"
+.\"*******************************************************************
+.TH SINH 3 2010\-09\-20 "" "Linux Programmer's Manual"
 .SH 名前
-.\"O sinh, sinhf, sinhl \- hyperbolic sine function
 sinh, sinhf, sinhl \- 双曲線正弦 (ハイパボリックサイン) 関数
-.\"O .SH SYNOPSIS
 .SH 書式
 .nf
-.B #include <math.h>
+\fB#include <math.h>\fP
 .sp
-.BI "double sinh(double " x );
+\fBdouble sinh(double \fP\fIx\fP\fB);\fP
 .br
-.BI "float sinhf(float " x );
+\fBfloat sinhf(float \fP\fIx\fP\fB);\fP
 .br
-.BI "long double sinhl(long double " x );
+\fBlong double sinhl(long double \fP\fIx\fP\fB);\fP
 .fi
 .sp
-.\"O Link with \fI\-lm\fP.
 \fI\-lm\fP でリンクする。
 .sp
 .in -4n
-.\"O Feature Test Macro Requirements for glibc (see
-.\"O .BR feature_test_macros (7)):
-glibc 向けの機能検査マクロの要件
-.RB ( feature_test_macros (7)
-参照):
+glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
 .in
 .sp
 .ad l
-.BR sinhf (),
-.BR sinhl ():
+\fBsinhf\fP(), \fBsinhl\fP():
 .RS 4
-_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
-_POSIX_C_SOURCE\ >=\ 200112L;
+_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE
+|| _POSIX_C_SOURCE\ >=\ 200112L;
 .br
-or
-.I cc\ -std=c99
+or \fIcc\ \-std=c99\fP
 .RE
 .ad
-.\"O .SH DESCRIPTION
 .SH 説明
-.\"O The
-.\"O .BR sinh ()
-.\"O function returns the hyperbolic sine of \fIx\fP, which
-.\"O is defined mathematically as:
-.BR sinh ()
-関数は双曲線正弦 (ハイパボリックサイン) 関数の値を返す。
-数学的には以下のように定義されている。
+\fBsinh\fP()  関数は双曲線正弦 (ハイパボリックサイン) 関数の値を返す。 数学的には以下のように定義されている。
 .nf
 
     sinh(x) = (exp(x) \- exp(\-x)) / 2
 .fi
-.\"O .SH "RETURN VALUE"
 .SH 返り値
-.\"O On success, these functions return the hyperbolic sine of
-.\"O .IR x .
-成功すると、これらの関数は
-.I x
-の双曲線正弦を返す。
+成功すると、これらの関数は \fIx\fP の双曲線正弦を返す。
 
-.\"O If
-.\"O .I x
-.\"O is a NaN, a NaN is returned.
-.I x
-が NaN の場合、NaN が返される。
+\fIx\fP が NaN の場合、NaN が返される。
 
-.\"O If
-.\"O .I x
-.\"O is +0 (\-0), +0 (\-0) is returned.
-.I x
-が +0 (\-0) の場合、+0 (\-0) が返される。
+\fIx\fP が +0 (\-0) の場合、+0 (\-0) が返される。
 
-.\"O If
-.\"O .I x
-.\"O is positive infinity (negative infinity),
-.\"O positive infinity (negative infinity) is returned.
-.I x
-が正の無限大 (負の無限大) の場合、正の無限大 (負の無限大) が返される。
+\fIx\fP が正の無限大 (負の無限大) の場合、正の無限大 (負の無限大) が返される。
 
-.\"O If the result overflows,
-.\"O a range error occurs,
-.\"O and the functions return
-.\"O .BR HUGE_VAL ,
-.\"O .BR HUGE_VALF ,
-.\"O or
-.\"O .BR HUGE_VALL ,
-.\"O respectively, with the same sign as
-.\"O .IR x .
-結果がオーバーフローする場合、
-範囲エラー (range error) が発生し、
-各関数はそれぞれ
-.BR HUGE_VAL ,
-.BR HUGE_VALF ,
-.BR HUGE_VALL
-を返す。符号は
-.I x
-と同じになる。
 .\"
 .\" POSIX.1-2001 documents an optional range error (underflow)
 .\" for subnormal x;
 .\" glibc 2.8 does not do this.
-.\"O .SH ERRORS
+結果がオーバーフローする場合、 範囲エラー (range error) が発生し、 各関数はそれぞれ \fBHUGE_VAL\fP,
+\fBHUGE_VALF\fP, \fBHUGE_VALL\fP を返す。符号は \fIx\fP と同じになる。
 .SH エラー
-.\"O See
-.\"O .BR math_error (7)
-.\"O for information on how to determine whether an error has occurred
-.\"O when calling these functions.
-これらの関数を呼び出した際にエラーが発生したかの判定方法についての情報は
-.BR math_error (7)
-を参照のこと。
+これらの関数を呼び出した際にエラーが発生したかの判定方法についての情報は \fBmath_error\fP(7)  を参照のこと。
 .PP
-.\"O The following errors can occur:
 以下のエラーが発生する可能性がある。
-.TP
-.\"O Range error: result overflow
+.TP 
 範囲エラー (range error): 結果のオーバーフロー
-.\"O .I errno
-.\"O is set to
-.\"O .BR ERANGE .
-.\"O An overflow floating-point exception
-.\"O .RB ( FE_OVERFLOW )
-.\"O is raised.
-.I errno
-に
-.B ERANGE
-が設定される。
-オーバーフロー浮動小数点例外
-.RB ( FE_OVERFLOW )
-が上がる。
-.\"O .SH "CONFORMING TO"
+\fIerrno\fP に \fBERANGE\fP が設定される。 オーバーフロー浮動小数点例外 (\fBFE_OVERFLOW\fP)  が上がる。
 .SH 準拠
-C99, POSIX.1-2001.
-.\"O The variant returning
-.\"O .I double
-.\"O also conforms to
-.\"O SVr4, 4.3BSD, C89.
-.I double
-版の関数は SVr4, 4.3BSD, C89 にも準拠している。
-.\"O .SH "SEE ALSO"
+C99, POSIX.1\-2001.  \fIdouble\fP 版の関数は SVr4, 4.3BSD, C89 にも準拠している。
 .SH 関連項目
-.BR acosh (3),
-.BR asinh (3),
-.BR atanh (3),
-.BR cosh (3),
-.BR csinh (3),
-.BR tanh (3)
+\fBacosh\fP(3), \fBasinh\fP(3), \fBatanh\fP(3), \fBcosh\fP(3), \fBcsinh\fP(3), \fBtanh\fP(3)