template< class T >
complex<T> asinh( const complex<T>& z );
Computes complex arc hyperbolic sine of a complex value z with branch cuts outside the interval [âi; +i] along the imaginary axis.
[edit] Parameters [edit] Return valueIf no errors occur, the complex arc hyperbolic sine of z is returned, in the range of a strip mathematically unbounded along the real axis and in the interval [âiÏ/2; +iÏ/2] along the imaginary axis.
[edit] Error handling and special valuesErrors are reported consistent with math_errhandling.
If the implementation supports IEEE floating-point arithmetic,
(+0,+0)
, the result is (+0,+0)
(x,+â)
(for any positive finite x), the result is (+â,Ï/2)
(x,NaN)
(for any finite x), the result is (NaN,NaN)
and FE_INVALID may be raised(+â,y)
(for any positive finite y), the result is (+â,+0)
(+â,+â)
, the result is (+â,Ï/4)
(+â,NaN)
, the result is (+â,NaN)
(NaN,+0)
, the result is (NaN,+0)
(NaN,y)
(for any finite nonzero y), the result is (NaN,NaN)
and FE_INVALID may be raised(NaN,+â)
, the result is (屉,NaN)
(the sign of the real part is unspecified)(NaN,NaN)
, the result is (NaN,NaN)
Although the C++ standard names this function "complex arc hyperbolic sine", the inverse functions of the hyperbolic functions are the area functions. Their argument is the area of a hyperbolic sector, not an arc. The correct name is "complex inverse hyperbolic sine", and, less common, "complex area hyperbolic sine".
Inverse hyperbolic sine is a multivalued function and requires a branch cut on the complex plane. The branch cut is conventionally placed at the line segments (-iâ,-i) and (i,iâ) of the imaginary axis.
The mathematical definition of the principal value of the inverse hyperbolic sine is asinh z = ln(z + â1+z2
).
For any
z,
asinh(z) =.
[edit] ExampleOutput:
asinh(0.000000,-2.000000) = (1.316958,-1.570796) asinh(-0.000000,-2.000000) (the other side of the cut) = (-1.316958,-1.570796) asinh(1.000000,2.000000) = (1.469352,1.063440) asin(-2.000000,1.000000) / i = (1.469352,1.063440)[edit] See also computes area hyperbolic cosine of a complex number (\({\small\operatorname{arcosh}{z}}\)arcosh(z))
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4