casinh
, casinhf
—complex arc hyperbolic sine#include <complex.h> double complex casinh(double complex z); float complex casinhf(float complex z);
Description
These functions compute the complex arc hyperbolic sine of z,
with branch cuts outside the interval [-i, +i] along the
imaginary axis.
casinhf
is identical to casinh
, except that it performs
its calculations on floats complex
.
Returns
Portability
casinh
and casinhf
are ISO C99