OSDN Git Service

(split) LDP: Release pages for LDP v3.39.
[linuxjm/LDP_man-pages.git] / release / man3 / sinh.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3 .\"     <mtk.manpages@gmail.com>
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
30 .\" Modified 1996-06-08 by aeb
31 .\" Modified 2002-07-27 by Walter Harms
32 .\"     (walter.harms@informatik.uni-oldenburg.de)
33 .\"
34 .\"*******************************************************************
35 .\"
36 .\" This file was generated with po4a. Translate the source file.
37 .\"
38 .\"*******************************************************************
39 .TH SINH 3 2010\-09\-20 "" "Linux Programmer's Manual"
40 .SH 名前
41 sinh, sinhf, sinhl \- 双曲線正弦 (ハイパボリックサイン) 関数
42 .SH 書式
43 .nf
44 \fB#include <math.h>\fP
45 .sp
46 \fBdouble sinh(double \fP\fIx\fP\fB);\fP
47 .br
48 \fBfloat sinhf(float \fP\fIx\fP\fB);\fP
49 .br
50 \fBlong double sinhl(long double \fP\fIx\fP\fB);\fP
51 .fi
52 .sp
53 \fI\-lm\fP でリンクする。
54 .sp
55 .in -4n
56 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
57 .in
58 .sp
59 .ad l
60 \fBsinhf\fP(), \fBsinhl\fP():
61 .RS 4
62 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE
63 || _POSIX_C_SOURCE\ >=\ 200112L;
64 .br
65 or \fIcc\ \-std=c99\fP
66 .RE
67 .ad
68 .SH 説明
69 \fBsinh\fP()  関数は双曲線正弦 (ハイパボリックサイン) 関数の値を返す。 数学的には以下のように定義されている。
70 .nf
71
72     sinh(x) = (exp(x) \- exp(\-x)) / 2
73 .fi
74 .SH 返り値
75 成功すると、これらの関数は \fIx\fP の双曲線正弦を返す。
76
77 \fIx\fP が NaN の場合、NaN が返される。
78
79 \fIx\fP が +0 (\-0) の場合、+0 (\-0) が返される。
80
81 \fIx\fP が正の無限大 (負の無限大) の場合、正の無限大 (負の無限大) が返される。
82
83 .\"
84 .\" POSIX.1-2001 documents an optional range error (underflow)
85 .\" for subnormal x;
86 .\" glibc 2.8 does not do this.
87 結果がオーバーフローする場合、 範囲エラー (range error) が発生し、 各関数はそれぞれ \fBHUGE_VAL\fP,
88 \fBHUGE_VALF\fP, \fBHUGE_VALL\fP を返す。符号は \fIx\fP と同じになる。
89 .SH エラー
90 これらの関数を呼び出した際にエラーが発生したかの判定方法についての情報は \fBmath_error\fP(7)  を参照のこと。
91 .PP
92 以下のエラーが発生する可能性がある。
93 .TP 
94 範囲エラー (range error): 結果のオーバーフロー
95 \fIerrno\fP に \fBERANGE\fP が設定される。 オーバーフロー浮動小数点例外 (\fBFE_OVERFLOW\fP)  が上がる。
96 .SH 準拠
97 C99, POSIX.1\-2001.  \fIdouble\fP 版の関数は SVr4, 4.3BSD, C89 にも準拠している。
98 .SH 関連項目
99 \fBacosh\fP(3), \fBasinh\fP(3), \fBatanh\fP(3), \fBcosh\fP(3), \fBcsinh\fP(3), \fBtanh\fP(3)