asinh

Calculates the inverse hyperbolic sine of x Exceptions:

InvalidOperationExceptionx is signaling NaN
UnderflowExceptionthe result is too small to be represented
InexactExceptionthe result is inexact
More...
@IEEECompliant("asinh", 43)
D
asinh
(
D
)
(
auto const ref D x
)

Detailed Description

Special values

xasinh(x)
NaNNaN
±0.0±0.0
±∞±∞

Examples

decimal32 x = 0;
assert (asinh(x) == 0);

Meta