OSDN Git Service

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