OSDN Git Service

fa23963a96150e7b28c29e3ee86a00083975e867
[linuxjm/LDP_man-pages.git] / original / man3 / ctanh.3
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
24
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)
37 .SH COLOPHON
38 This page is part of release 3.64 of the Linux
39 .I man-pages
40 project.
41 A description of the project,
42 and information about reporting bugs,
43 can be found at
44 \%http://www.kernel.org/doc/man\-pages/.