OSDN Git Service

Update README
[linuxjm/LDP_man-pages.git] / release / man3 / asinh.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 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .\" References consulted:
28 .\"     Linux libc source code
29 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
30 .\"     386BSD man pages
31 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
32 .\" Modified 2002-07-27 by Walter Harms
33 .\"     (walter.harms@informatik.uni-oldenburg.de)
34 .\"
35 .\"*******************************************************************
36 .\"
37 .\" This file was generated with po4a. Translate the source file.
38 .\"
39 .\"*******************************************************************
40 .\"
41 .\" Japanese Version Copyright (c) 1996 Kenji Kajiwara and Kentaro Ogawa
42 .\"         all rights reserved.
43 .\" Translated Sat, 13 Jul 1996 17:58:16 JST
44 .\"         by Kenji Kajiwara and Kentaro Ogawa
45 .\" Proof Reading: Takashi Yoshino
46 .\" Updated Tue Aug  5 23:16:48 JST 2003
47 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
48 .\" Updated 2008-09-14, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
49 .\"
50 .TH ASINH 3 2013\-10\-14 GNU "Linux Programmer's Manual"
51 .SH 名前
52 asinh, asinhf, asinhl \- 逆双曲線正弦(inverse hyperbolic sine)関数
53 .SH 書式
54 .nf
55 \fB#include <math.h>\fP
56 .sp
57 \fBdouble asinh(double \fP\fIx\fP\fB);\fP
58 .br
59 \fBfloat asinhf(float \fP\fIx\fP\fB);\fP
60 .br
61 \fBlong double asinhl(long double \fP\fIx\fP\fB);\fP
62 .fi
63 .sp
64 \fI\-lm\fP でリンクする。
65 .sp
66 .in -4n
67 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
68 .in
69 .sp
70 .ad l
71 \fBasinh\fP():
72 .RS 4
73 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500 || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED || _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L;
74 .br
75 or \fIcc\ \-std=c99\fP
76 .RE
77 .br
78 \fBasinhf\fP(), \fBasinhl\fP():
79 .RS 4
80 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE
81 || _POSIX_C_SOURCE\ >=\ 200112L;
82 .br
83 or \fIcc\ \-std=c99\fP
84 .RE
85 .ad b
86 .SH 説明
87 \fBasinh\fP()  関数は \fIx\fP 逆双曲線正弦(inverse hyperbolic sine)を
88 計算する。すなわち、その双曲線正弦(hyperbolic sine)が \fIx\fP に なるような値である。
89 .SH 返り値
90 成功すると、これらの関数は \fIx\fP の逆双曲線正弦を返す。
91
92 \fIx\fP が NaN の場合、NaN が返される。
93
94 \fIx\fP が +0 (\-0) の場合、+0 (\-0) が返される。
95
96 .\"
97 .\" POSIX.1-2001 documents an optional range error for subnormal x;
98 .\" glibc 2.8 does not do this.
99 \fIx\fP が正の無限大 (負の無限大) の場合、正の無限大 (負の無限大) が返される。
100 .SH エラー
101 エラーは発生しない。
102 .SH 属性
103 .SS "マルチスレッディング (pthreads(7) 参照)"
104 関数 \fBasinh\fP(), \fBasinhf\fP(), \fBasinhl\fP() はスレッドセーフである。
105 .SH 準拠
106 C99, POSIX.1\-2001.  \fIdouble\fP 版の関数は SVr4, 4.3BSD, C89 にも準拠している。
107 .SH 関連項目
108 \fBacosh\fP(3), \fBatanh\fP(3), \fBcasinh\fP(3), \fBcosh\fP(3), \fBsinh\fP(3), \fBtanh\fP(3)
109 .SH この文書について
110 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.79 の一部
111 である。プロジェクトの説明とバグ報告に関する情報は
112 http://www.kernel.org/doc/man\-pages/ に書かれている。