1CACOSH(3) complex math routines CACOSH(3)
2
3
4
6 cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine
7
9 #include <complex.h>
10
11 double complex cacosh(double complex z);
12 float complex cacoshf(float complex z);
13 long double complex cacoshl(long double complex z);
14
15 Link with -lm.
16
18 The cacosh() function calculates the complex acosh(). If y =
19 cacosh(z), then z = ccosh(y). The imaginary part of y is chosen in the
20 interval [-pi,pi]. The real part of y is chosen nonnegative.
21
22 One has cacosh(z) = (0.5)*clog((1+z)/(1-z)).
23
25 C99
26
28 acosh(3), cabs(3), cimag(3), complex(7)
29
30
31
32 2002-07-28 CACOSH(3)