Gets the inverse sine of a real number.

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Shared Function Asin ( _
	a As Double _
) As DoubleComplex
C#
public static DoubleComplex Asin (
	double a
)
C++
public:
static DoubleComplex Asin (
	double a
)

Parameters

a (System.Double)
A real number.

Return Value

The inverse sine of the complex number.

Remarks

If the absolute value of a is greater than 1, the result is complex.

Remarks

This method extends the Asin(Double) method of the Math class to real numbers outside the range [-1, 1].

See Also