Difference between revisions of "cpp/numeric/math/asinh"
From cppreference.com
m (Update links.) |
m (Use since= and until= params of {{dcl}} template.) |
||
Line 3: | Line 3: | ||
{{dcl begin}} | {{dcl begin}} | ||
{{dcl header | cmath}} | {{dcl header | cmath}} | ||
− | {{dcl | | + | {{dcl | since=c++11 | |
float asinh( float arg ); | float asinh( float arg ); | ||
}} | }} | ||
− | {{dcl | | + | {{dcl | since=c++11 | |
double asinh( double arg ); | double asinh( double arg ); | ||
}} | }} | ||
− | {{dcl | | + | {{dcl | since=c++11 | |
long double asinh( long double arg ); | long double asinh( long double arg ); | ||
}} | }} | ||
− | {{dcl | | + | {{dcl | since=c++11 | |
double asinh( Integral arg ); | double asinh( Integral arg ); | ||
}} | }} |
Revision as of 15:42, 1 July 2013
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 hyperbolic arc 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) |
External links
Weisstein, Eric W. "Inverse Hyperbolic Sine." From MathWorld--A Wolfram Web Resource.