]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/ctanh.3
membarrier.2: Remove redundant mention of return value of MEMBARRIER_CMD_SHARED
[thirdparty/man-pages.git] / man3 / ctanh.3
CommitLineData
fea681da 1.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2297bf0e 2.\"
38f20bb9 3.\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
fea681da 4.\" Distributed under GPL
38f20bb9 5.\" %%%LICENSE_END
fea681da 6.\"
c73595c2 7.TH CTANH 3 2015-04-19 "" "Linux Programmer's Manual"
fea681da
MK
8.SH NAME
9ctanh, ctanhf, ctanhl \- complex hyperbolic tangent
10.SH SYNOPSIS
11.B #include <complex.h>
12.sp
13.BI "double complex ctanh(double complex " z ");"
d39541ec 14.br
fea681da 15.BI "float complex ctanhf(float complex " z );
d39541ec 16.br
fea681da
MK
17.BI "long double complex ctanhl(long double complex " z ");"
18.sp
20c58d70 19Link with \fI\-lm\fP.
fea681da 20.SH DESCRIPTION
4f337c12
MK
21These functions calculate the complex hyperbolic tangent of
22.IR z .
23
daac0b39
MK
24The complex hyperbolic tangent function is defined
25mathematically as:
26.nf
27
28 ctanh(z) = csinh(z) / ccosh(z)
29.fi
f0d7ce1d
MK
30.SH VERSIONS
31These functions first appeared in glibc in version 2.1.
8716ac07
MS
32.SH ATTRIBUTES
33For an explanation of the terms used in this section, see
34.BR attributes (7).
35.TS
36allbox;
37lbw27 lb lb
38l l l.
39Interface Attribute Value
40T{
41.BR ctanh (),
42.BR ctanhf (),
43.BR ctanhl ()
44T} Thread safety MT-Safe
45.TE
46
47297adb 47.SH CONFORMING TO
9a74e018 48C99, POSIX.1-2001, POSIX.1-2008.
47297adb 49.SH SEE ALSO
fea681da 50.BR cabs (3),
f54fb0fa 51.BR catanh (3),
fea681da
MK
52.BR ccosh (3),
53.BR csinh (3),
a8bda636 54.BR complex (7)