mbrtowc.3: SYNOPSIS: Use 'restrict' in prototypes
[man-pages.git] / man3 / ctanh.3
blobdfdba5ac0d36626d768ef82eb821315bf511d39b
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\"
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
5 .\" %%%LICENSE_END
6 .\"
7 .TH CTANH 3 2017-09-15 "" "Linux Programmer's Manual"
8 .SH NAME
9 ctanh, ctanhf, ctanhl \- complex hyperbolic tangent
10 .SH SYNOPSIS
11 .nf
12 .B #include <complex.h>
13 .PP
14 .BI "double complex ctanh(double complex " z ");"
15 .BI "float complex ctanhf(float complex " z );
16 .BI "long double complex ctanhl(long double complex " z ");"
17 .PP
18 Link with \fI\-lm\fP.
19 .fi
20 .SH DESCRIPTION
21 These functions calculate the complex hyperbolic tangent of
22 .IR z .
23 .PP
24 The complex hyperbolic tangent function is defined
25 mathematically as:
26 .PP
27 .nf
28     ctanh(z) = csinh(z) / ccosh(z)
29 .fi
30 .SH VERSIONS
31 These functions first appeared in glibc in version 2.1.
32 .SH ATTRIBUTES
33 For an explanation of the terms used in this section, see
34 .BR attributes (7).
35 .ad l
36 .nh
37 .TS
38 allbox;
39 lbx lb lb
40 l l l.
41 Interface       Attribute       Value
43 .BR ctanh (),
44 .BR ctanhf (),
45 .BR ctanhl ()
46 T}      Thread safety   MT-Safe
47 .TE
48 .hy
49 .ad
50 .sp 1
51 .SH CONFORMING TO
52 C99, POSIX.1-2001, POSIX.1-2008.
53 .SH SEE ALSO
54 .BR cabs (3),
55 .BR catanh (3),
56 .BR ccosh (3),
57 .BR csinh (3),
58 .BR complex (7)