c Programming/C Reference/complex.h/casinh

casinh is one of the Standard C library function in the complex.h header file. if we want 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 inverse as a this function.


the prototype of this function is:

double complex casinh(double complex x);

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

return value

This function returns complex arc hyperbolic sine,in the range mathematically unbounded along real axis and in the interval [-ipi/2,+ipi/2] along imaginary axis.

compatibility

Win32, C99 7.3.6.2

see also

  • cacosh
  • catanh

external links

Last modified on 18 October 2011, at 17:01