cacosh
, cacoshf
—complex arc hyperbolic cosine#include <complex.h> double complex cacosh(double complex z); float complex cacoshf(float complex z);
Description
These functions compute the complex arc hyperbolic cosine of z,
with a branch cut at values less than 1 along the real axis.
cacoshf
is identical to cacosh
, except that it performs
its calculations on floats complex
.
Returns
Portability
cacosh
and cacoshf
are ISO C99