asinh

compute the inverse hyberbolic sine

Synopsis:

#include <math.h>
double asinh( double x );

Description:

The asinh() function computes the inverse hyperbolic sine of x.

Returns:

the inverse hyperbolic sine value

See also:

acosh(), atanh(), sinh(), errno, matherr()

Examples:

#include <stdio.h>
#include <math.h>

void main()
  {
    printf( "%f\n", asinh( 0.5 ) );
  }

produces the output:

0.481212

Classification:

WATCOM

Systems:

Math