OSDN Git Service

(split) LDP_man-pages: update original to v3.34.
[linuxjm/LDP_man-pages.git] / original / man3 / ctanh.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\" Distributed under GPL
3 .\"
4 .TH CTANH 3 2008-08-11 "" "Linux Programmer's Manual"
5 .SH NAME
6 ctanh, ctanhf, ctanhl \- complex hyperbolic tangent
7 .SH SYNOPSIS
8 .B #include <complex.h>
9 .sp
10 .BI "double complex ctanh(double complex " z ");"
11 .br
12 .BI "float complex ctanhf(float complex " z );
13 .br
14 .BI "long double complex ctanhl(long double complex " z ");"
15 .sp
16 Link with \fI\-lm\fP.
17 .SH DESCRIPTION
18 The complex hyperbolic tangent function is defined
19 mathematically as:
20 .nf
21
22     ctanh(z) = csinh(z) / ccosh(z)
23 .fi
24 .SH VERSIONS
25 These functions first appeared in glibc in version 2.1.
26 .SH "CONFORMING TO"
27 C99.
28 .SH "SEE ALSO"
29 .BR cabs (3),
30 .BR catanh (3),
31 .BR ccosh (3),
32 .BR csinh (3),
33 .BR complex (7)