std::sinh

From Cppreference

Jump to: navigation, search
Defined in header <cmath>

float       sinh( float arg );

double      sinh( double arg );

long double sinh( long double arg );

double      sinh( Integral arg );
(since C++11)

Computes hyperbolic sine of arg

[edit] Parameters

arg - floating point value

[edit] Return value

hyperbolic sine of arg

[edit] See also

computes hyperbolic cosine (ch(x))
(function)
hyperbolic tangent
(function)
(C++11)
hyperbolic arc sine
(function)
computes hyperbolic sine of a complex number (sh(z))
(function template)
applies the function std::sinh to each element of valarray
(function template)