1CTANH(3)                   Linux Programmer's Manual                  CTANH(3)
2
3
4

NAME

6       ctanh, ctanhf, ctanhl - complex hyperbolic tangent
7

SYNOPSIS

9       #include <complex.h>
10
11       double complex ctanh(double complex z);
12       float complex ctanhf(float complex z);
13       long double complex ctanhl(long double complex z);
14
15       Link with -lm.
16

DESCRIPTION

18       These functions calculate the complex hyperbolic tangent of z.
19
20       The complex hyperbolic tangent function is defined mathematically as:
21
22           ctanh(z) = csinh(z) / ccosh(z)
23

VERSIONS

25       These functions first appeared in glibc in version 2.1.
26

ATTRIBUTES

28       For   an   explanation   of   the  terms  used  in  this  section,  see
29       attributes(7).
30
31       ┌────────────────────────────┬───────────────┬─────────┐
32Interface                   Attribute     Value   
33       ├────────────────────────────┼───────────────┼─────────┤
34ctanh(), ctanhf(), ctanhl() │ Thread safety │ MT-Safe │
35       └────────────────────────────┴───────────────┴─────────┘
36

CONFORMING TO

38       C99, POSIX.1-2001, POSIX.1-2008.
39

SEE ALSO

41       cabs(3), catanh(3), ccosh(3), csinh(3), complex(7)
42

COLOPHON

44       This page is part of release 5.02 of the Linux  man-pages  project.   A
45       description  of  the project, information about reporting bugs, and the
46       latest    version    of    this    page,    can     be     found     at
47       https://www.kernel.org/doc/man-pages/.
48
49
50
51                                  2017-09-15                          CTANH(3)
Impressum