1ASINH(3) Linux Programmer's Manual ASINH(3)
2
3
4
6 asinh, asinhf, asinhl - inverse hyperbolic sine function
7
9 #include <math.h>
10
11 double asinh(double x);
12 float asinhf(float x);
13 long double asinhl(long double x);
14
15 Link with -lm.
16
18 The asinh() function calculates the inverse hyperbolic sine of x; that
19 is the value whose hyperbolic sine is x.
20
22 SVr4, POSIX.1-2001, 4.3BSD, C89. The float and long double variants
23 are C99 requirements.
24
26 acosh(3), atanh(3), casinh(3), cosh(3), sinh(3), tanh(3)
27
28
29
30 2002-07-27 ASINH(3)