1CATANH(3) Linux Programmer's Manual CATANH(3)
2
3
4
6 catanh, catanhf, catanhl - complex arc tangents hyperbolic
7
9 #include <complex.h>
10
11 double complex catanh(double complex z);
12 float complex catanhf(float complex z);
13 long double complex catanhl(long double complex z);
14
15 Link with -lm.
16
18 The catanh() function calculates the complex arc hyperbolic tangent of
19 z. If y = catanh(z), then z = ctanh(y). The imaginary part of y is
20 chosen in the interval [-pi/2,pi/2].
21
22 One has:
23
24 catanh(z) = 0.5 * clog((1 + z) / (1 - z))
25
27 These functions first appeared in glibc in version 2.1.
28
30 C99.
31
33 atanh(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 CATANH(3)