1CCOSH(3) complex math routines CCOSH(3)
23
4
NAME
6ccosh, ccoshf, ccoshl - complex hyperbolic cosine
7
SYNOPSIS
9#include <complex.h>
1011
double complex ccosh(double complex z);
12float complex ccoshf(float complex z);
13long double complex ccoshl(long double complex z);
1415
Link with -lm.
16
DESCRIPTION
18The complex hyperbolic cosine function ccosh(z) is defined as
19(exp(z)+exp(-z))/2.
20
CONFORMING TO
22C99
23
SEE ALSO
25cabs(3), csinh(3), ctanh(3), complex(7)
2627
28
29
2002-07-28 CCOSH(3)