C examples for math.h:asinh
function
<cmath> <ctgmath> <math.h>
Compute area hyperbolic sine
long double asinhl (long double x); long double asinh (long double x); double asinh (double x); float asinhf (float x); double asinh (double x); float asinh (float x); double asinh (T x);
Parameter | Description |
---|---|
x | Value whose area hyperbolic sine is computed. |
Area hyperbolic sine of x.
#include <stdio.h> #include <math.h> int main ()/* ww w .j a v a2 s . c om*/ { double param = exp(32) - cosh(29); double result = asinh(param) ; printf ("The area hyperbolic sine of %f is %f.\n", param, result); return 0; }