asin

fun asin(complex: Complex): Complex(source)

Computes the arc sine (inverse sine) of a complex number. The arc sine is calculated using the formula: asin(z) = -i * ln(i * z + sqrt(1 - z²)) where z is the complex number.

Return

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

Parameters

complex

The complex number for which the arc sine is calculated.