Name
asinh, asinhf, asinhl
- inverse hyperbolic sine functions
Library
libm.lib
Synopsis
|
long double
asinh (long double x);
|
Return values
The
asinh,
asinhf,
and
asinhl
functions
return the inverse hyperbolic sine of
x.
Detailed description
The
asinh,
asinhf,
and
asinhl
functions compute the inverse hyperbolic sine
of the real
argument
x.
The function
asinhl
is an alias to the function
asinh.
Examples
#include <math.h>
int main( )
{
double x = 0.75;
double y = asinh( x );
printf( "asinh(%f) = %f\n", x, y );
y = asinhf( x );
printf( "asinhf(%f) = %f\n", x, y );
y = asinhl( x );
printf( "asinhl(%f) = %f\n", x, y );
}
Output
asinh( 0.750000 ) = 0.6931471
asinhf(0.750000 ) = 0.6931471
asinhl(0.750000 ) = 0.6931471
See also
acosh,
atanh,
exp,
math
Feedback
For additional information or queries on this page send feedback
© 2005-2007 Nokia
|
|