1CASINH(3) Linux Programmer's Manual CASINH(3)
2
3
4
6 casinh, casinhf, casinhl - complex arc sine hyperbolic
7
9 #include <complex.h>
10
11 double complex casinh(double complex z);
12 float complex casinhf(float complex z);
13 long double complex casinhl(long double complex z);
14
15 Link with -lm.
16
18 These functions calculate the complex arc hyperbolic sine of z. If
19 y = casinh(z), then z = csinh(y). The imaginary part of y is chosen in
20 the interval [-pi/2,pi/2].
21
22 One has:
23
24 casinh(z) = clog(z + csqrt(z * z + 1))
25
27 These functions first appeared in glibc in version 2.1.
28
30 For an explanation of the terms used in this section, see
31 attributes(7).
32
33 ┌───────────────────────────────┬───────────────┬─────────┐
34 │Interface │ Attribute │ Value │
35 ├───────────────────────────────┼───────────────┼─────────┤
36 │casinh(), casinhf(), casinhl() │ Thread safety │ MT-Safe │
37 └───────────────────────────────┴───────────────┴─────────┘
39 C99, POSIX.1-2001, POSIX.1-2008.
40
42 asinh(3), cabs(3), cimag(3), csinh(3), complex(7)
43
45 This page is part of release 5.07 of the Linux man-pages project. A
46 description of the project, information about reporting bugs, and the
47 latest version of this page, can be found at
48 https://www.kernel.org/doc/man-pages/.
49
50
51
52 2015-04-19 CASINH(3)