asinh - C math.h

C examples for math.h:asinh

Type

function

From

<cmath>
<ctgmath>
<math.h>

Description

Compute area hyperbolic sine

Prototype

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);           

Parameters

Parameter Description
xValue whose area hyperbolic sine is computed.

Return Value

Area hyperbolic sine of x.

Example

Demo Code

#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;
}

Related Tutorials