std::asinh
From cppreference.com
Defined in header <cmath>
|
||
float asinh( float arg ); |
(since C++11) | |
double asinh( double arg ); |
(since C++11) | |
long double asinh( long double arg ); |
(since C++11) | |
double asinh( Integral arg ); |
(since C++11) | |
Computes area hyperbolic sine of arg
.
Contents |
Parameters
arg | - | floating point value |
Return value
Inverse hyperbolic sine of arg
.
See also
(C++11)(C++11)(C++11) |
computes the inverse hyperbolic cosine (arcosh(x)) (function) |
(C++11)(C++11)(C++11) |
computes the inverse hyperbolic tangent (artanh(x)) (function) |
(C++11)(C++11) |
computes hyperbolic sine (sinh(x)) (function) |
(C++11) |
computes area hyperbolic sine of a complex number (arsinh(z)) (function template) |
C documentation for asinh
|
External links
Weisstein, Eric W. "Inverse Hyperbolic Sine." From MathWorld--A Wolfram Web Resource.