OSDN Git Service

Convert release and draft pages to UTF-8.
[linuxjm/jm.git] / manual / LDP_man-pages / release / man3 / cosh.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 .\" Japanese Version Copyright (c) 1996 Kenji Kajiwara and Kentaro Ogawa
35 .\"         all rights reserved.
36 .\" Translated Sat, 13 Jul 1996 17:54:30 JST
37 .\"         by Kenji Kajiwara and Kentaro Ogawa
38 .\" Updated Tue Aug  5 23:16:48 JST 2003
39 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
40 .\" Updated & Modified Tue Feb 15 04:28:36 JST 2005
41 .\"         by Yuichi SATO <ysato444@yahoo.co.jp>
42 .\" Updated 2008-09-15, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
43 .\"
44 .TH COSH 3 2010-09-20 ""  "Linux Programmer's Manual"
45 .SH 名前
46 cosh, coshf, coshl \- 双曲線余弦 (ハイパボリックコサイン) 関数
47 .SH 書式
48 .nf
49 .B #include <math.h>
50 .sp
51 .BI "double cosh(double " x );
52 .br
53 .BI "float coshf(float " x );
54 .br
55 .BI "long double coshl(long double " x );
56 .fi
57 .sp
58 \fI\-lm\fP でリンクする。
59 .sp
60 .in -4n
61 glibc 向けの機能検査マクロの要件
62 .RB ( feature_test_macros (7)
63 参照):
64 .in
65 .sp
66 .ad l
67 .BR coshf (),
68 .BR coshl ():
69 .RS 4
70 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
71 _POSIX_C_SOURCE\ >=\ 200112L;
72 .br
73 or
74 .I cc\ -std=c99
75 .RE
76 .ad
77 .SH 説明
78 .BR cosh ()
79 関数は双曲線余弦 (ハイパボリックコサイン) の値を返す。
80 数学的には以下のように定義される.
81 .nf
82
83     cosh(x) = (exp(x) + exp(\-x)) / 2
84 .fi
85 .SH 返り値
86 成功すると、これらの関数は
87 .I x
88 の双曲線余弦を返す。
89
90 .I x
91 が NaN の場合、NaN が返される。
92
93 .I x
94 が +0 か \-0 の場合、 1 が返される。
95
96 .I x
97 が正の無限大か負の無限大の場合、正の無限大が返される。
98
99 結果がオーバーフローする場合、範囲エラーが発生し、
100 各関数はそれぞれ
101 .RB + HUGE_VAL ,
102 .RB + HUGE_VALF ,
103 .RB + HUGE_VALL
104 を返す。
105 .SH エラー
106 これらの関数を呼び出した際にエラーが発生したかの判定方法についての情報は
107 .BR math_error (7)
108 を参照のこと。
109 .PP
110 以下のエラーが発生する可能性がある。
111 .TP
112 範囲エラー (range error): 結果がオーバーフローした
113 .I errno
114
115 .B ERANGE
116 が設定される。
117 オーバーフロー浮動小数点例外
118 .RB ( FE_OVERFLOW )
119 が上がる。
120 .SH 準拠
121 C99, POSIX.1-2001.
122 .I double
123 版の関数は SVr4, 4.3BSD にも準拠している。
124 .SH バグ
125 glibc バージョン 2.3.4 以前では、オーバーフローが発生したときに、
126 オーバーフロー浮動小数点例外
127 .RB ( FE_OVERFLOW )
128 が上がらなかった。
129 .SH 関連項目
130 .BR acosh (3),
131 .BR asinh (3),
132 .BR atanh (3),
133 .BR ccos (3),
134 .BR sinh (3),
135 .BR tanh (3)