Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/numeric/math/asinh"

From cppreference.com
< cpp‎ | numeric‎ | math
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 | notes={{mark since c++11}} |
+
{{dcl | since=c++11 |
 
float      asinh( float arg );
 
float      asinh( float arg );
 
}}
 
}}
{{dcl | notes={{mark since c++11}} |
+
{{dcl | since=c++11 |
 
double      asinh( double arg );
 
double      asinh( double arg );
 
}}
 
}}
{{dcl | notes={{mark since c++11}} |
+
{{dcl | since=c++11 |
 
long double asinh( long double arg );
 
long double asinh( long double arg );
 
}}
 
}}
{{dcl | notes={{mark since c++11}} |
+
{{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) [edit]
(C++11)(C++11)(C++11)
computes the inverse hyperbolic tangent (artanh(x))
(function) [edit]
(C++11)(C++11)
computes hyperbolic sine (sinh(x))
(function) [edit]
computes area hyperbolic sine of a complex number (arsinh(z))
(function template) [edit]

External links

Weisstein, Eric W. "Inverse Hyperbolic Sine." From MathWorld--A Wolfram Web Resource.