]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/asinh.3
_syscall.2, clock_getres.2, clone.2, copy_file_range.2, create_module.2, delete_modul...
[thirdparty/man-pages.git] / man3 / asinh.3
CommitLineData
fea681da 1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
5ef3a128
MK
2.\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3.\" <mtk.manpages@gmail.com>
fea681da 4.\"
93015253 5.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
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.
c13182ef 14.\"
fea681da
MK
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.
c13182ef 22.\"
fea681da
MK
23.\" Formatted or processed versions of this manual, if unaccompanied by
24.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 25.\" %%%LICENSE_END
fea681da
MK
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.\"
f55a6d59 35.TH ASINH 3 2017-07-13 "GNU" "Linux Programmer's Manual"
fea681da
MK
36.SH NAME
37asinh, asinhf, asinhl \- inverse hyperbolic sine function
38.SH SYNOPSIS
39.nf
40.B #include <math.h>
68e4db0a 41.PP
fea681da
MK
42.BI "double asinh(double " x );
43.br
44.BI "float asinhf(float " x );
45.br
c13182ef 46.BI "long double asinhl(long double " x );
fea681da 47.fi
68e4db0a 48.PP
20c58d70 49Link with \fI\-lm\fP.
68e4db0a 50.PP
cc4615cc
MK
51.in -4n
52Feature Test Macro Requirements for glibc (see
53.BR feature_test_macros (7)):
54.in
68e4db0a 55.PP
cc4615cc 56.ad l
5ef3a128 57.BR asinh ():
5744db3c 58.RS 4
636ed4d5
MK
59_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
60 || _XOPEN_SOURCE\ >=\ 500
cf7fa0a1 61.\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
e0a68e13 62 || /* Since glibc 2.19: */ _DEFAULT_SOURCE
636ed4d5 63 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
5744db3c 64.RE
dbfe9c70 65.PP
cc4615cc
MK
66.BR asinhf (),
67.BR asinhl ():
5744db3c 68.RS 4
636ed4d5 69_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
e0a68e13 70 || /* Since glibc 2.19: */ _DEFAULT_SOURCE
636ed4d5 71 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
5744db3c 72.RE
cc4615cc 73.ad b
fea681da 74.SH DESCRIPTION
5600f73a 75These functions calculate the inverse hyperbolic sine of
022671eb
MK
76.IR x ;
77that is the value whose hyperbolic sine is
78.IR x .
47297adb 79.SH RETURN VALUE
5ef3a128
MK
80On success, these functions return the inverse hyperbolic sine of
81.IR x .
82
83If
84.I x
85is a NaN, a NaN is returned.
86
87If
88.I x
89is +0 (\-0), +0 (\-0) is returned.
90
91If
92.I x
93is positive infinity (negative infinity),
94positive infinity (negative infinity) is returned.
95.\"
96.\" POSIX.1-2001 documents an optional range error for subnormal x;
97.\" glibc 2.8 does not do this.
98.SH ERRORS
99No errors occur.
a5398d89 100.SH ATTRIBUTES
3d90310b
MK
101For an explanation of the terms used in this section, see
102.BR attributes (7).
103.TS
104allbox;
105lbw27 lb lb
106l l l.
107Interface Attribute Value
108T{
a5398d89
PH
109.BR asinh (),
110.BR asinhf (),
a5398d89 111.BR asinhl ()
3d90310b
MK
112T} Thread safety MT-Safe
113.TE
47297adb 114.SH CONFORMING TO
9a74e018 115C99, POSIX.1-2001, POSIX.1-2008.
e05e3635 116
5ef3a128
MK
117The variant returning
118.I double
119also conforms to
7cada58c 120SVr4, 4.3BSD.
47297adb 121.SH SEE ALSO
fea681da
MK
122.BR acosh (3),
123.BR atanh (3),
36268806 124.BR casinh (3),
fea681da
MK
125.BR cosh (3),
126.BR sinh (3),
127.BR tanh (3)