Name
sinh, sinhf, sinhl
- hyperbolic sine function
Library
libm.lib
Synopsis
|
long double
sinhl (long double x);
|
Detailed description
The
sinh
and the
sinhf
functions compute the hyperbolic sine of
x.
The function
sinhl
is an alias to the function
sinh
Examples
#include <math.h>
int main( )
{
double inp = 0.75;
double y;
y = sinh( inp );
printf( "sinh( %f) = %f\n", inp, y );
y = sinhf( inp);
printf( "sinhf( %f) = %f\n", inp, y );
y = sinhl( inp);
printf( "sinhl( %f) = %f\n", inp, y );
}
Output
sinh ( 0.75 ) = 0.8223167
sinhf( 0.75 ) = 0.8223167
sinhl( 0.75 ) = 0.8223167
See also
acos,
asin,
atan,
atan2,
cos,
cosh,
math,
sin,
tan,
tanh
Feedback
For additional information or queries on this page send feedback
© 2005-2007 Nokia
|
|