1asinh(3M) Mathematical Library Functions asinh(3M)
2
3
4
6 asinh, asinhf, asinhl - inverse hyperbolic sine functions
7
9 cc [ flag... ] file... -lm [ library... ]
10 #include <math.h>
11
12 double asinh(double x);
13
14
15 float asinhf(float x);
16
17
18 long double asinhl(long double x);
19
20
22 These functions compute the inverse hyperbolic sine of their argument
23 x.
24
26 Upon successful completion, these functions return the inverse hyper‐
27 bolic sine of their argument.
28
29
30 If x is NaN, NaN is returned.
31
32
33 If x is ±0 or ±Inf, x is returned.
34
36 No errors are defined.
37
39 See attributes(5) for descriptions of the following attributes:
40
41
42
43
44 ┌─────────────────────────────┬─────────────────────────────┐
45 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
46 ├─────────────────────────────┼─────────────────────────────┤
47 │Interface Stability │Standard │
48 ├─────────────────────────────┼─────────────────────────────┤
49 │MT-Level │MT-Safe │
50 └─────────────────────────────┴─────────────────────────────┘
51
53 math.h(3HEAD), sinh(3M), attributes(5), standards(5)
54
55
56
57SunOS 5.11 1 Sep 2002 asinh(3M)