C Programming/complex.h/casinh

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Prototypes[edit | edit source]

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

Description[edit | edit source]

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 | edit source]

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

compatibility[edit | edit source]

Win32, C99 7.3.6.2

See also[edit | edit source]

External links[edit | edit source]