pid_namespaces.7: Mention PR_SET_CHILD_SUBREAPER in discussion of reparenting to...
[man-pages.git] / man3 / ctanh.3
blob69639e2929a601dc35fa0d6c5619425df6401d86
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 2008-08-11 "" "Linux Programmer's Manual"
8 .SH NAME
9 ctanh, ctanhf, ctanhl \- complex hyperbolic tangent
10 .SH SYNOPSIS
11 .B #include <complex.h>
12 .sp
13 .BI "double complex ctanh(double complex " z ");"
14 .br
15 .BI "float complex ctanhf(float complex " z );
16 .br
17 .BI "long double complex ctanhl(long double complex " z ");"
18 .sp
19 Link with \fI\-lm\fP.
20 .SH DESCRIPTION
21 The complex hyperbolic tangent function is defined
22 mathematically as:
23 .nf
25     ctanh(z) = csinh(z) / ccosh(z)
26 .fi
27 .SH VERSIONS
28 These functions first appeared in glibc in version 2.1.
29 .SH CONFORMING TO
30 C99.
31 .SH SEE ALSO
32 .BR cabs (3),
33 .BR catanh (3),
34 .BR ccosh (3),
35 .BR csinh (3),
36 .BR complex (7)