asinh

fun asinh(complex: Complex): Complex(source)

Computes the inverse hyperbolic sine of a complex number. The inverse hyperbolic sine is calculated using the formula: asinh(z) = ln(z + sqrt(z² + 1)) where z is the complex number.

Return

A new instance of Complex representing the inverse hyperbolic sine of the given complex number.

Parameters

complex

The complex number for which the inverse hyperbolic sine is calculated.