c Programming/C Reference/complex.h/casinh
< C Programming < C Reference < complex.h
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.
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 along imaginary axis.
compatibility
Win32, C99 7.3.6.2
see also
- cacosh
- catanh
external links
- – Linux Library Functions Manual
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.