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 The casinh() function calculates the complex arc hyperbolic sine of z.
19 If y = casinh(z), then z = csinh(y). The imaginary part of y is chosen
20 in 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 C99.
31
33 asinh(3), cabs(3), cimag(3), complex(7)
34
36 This page is part of release 3.22 of the Linux man-pages project. A
37 description of the project, and information about reporting bugs, can
38 be found at http://www.kernel.org/doc/man-pages/.
39
40
41
42 2008-08-11 CASINH(3)