C Programming/complex.h/casinh

Prototypes edit

double complex casinh(double complex z);
float complex casinhf(float complex z);
long double complex casinhl(long double complex z);

Description edit

casinh is one of the Standard C library functions in the complex.h header file. It is used to calculate the complex and inverse hyperbolic sine of given angle or number. Just like sine operator has inverse as sin inverse, hyperbolic sine of complex number has this as an inverse function.

if casinh(x) = y, then x = csinh(y). It can be also evaluated as: casinh(x) = clog(x+csqrt(x*x+1))

return value edit

This function returns complex arc hyperbolic sine,in the range mathematically unbounded along real axis and in the interval   along imaginary axis.

compatibility edit

Win32, C99 7.3.6.2

See also edit

External links edit