Complex<T>.Asin Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Asin(T) Gets the inverse sine of a real number.
Asin(Complex<T>) Gets the inverse sine of a complex number.

Complex<T>.Asin(T)

Gets the inverse sine of a real number.
C#
public static Complex<T> Asin(
	T a
)

Parameters

a  T
A real number.

Return Value

Complex<T>
The inverse sine of the complex number.

Remarks

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

Complex<T>.Asin(Complex<T>)

Gets the inverse sine of a complex number.
C#
public static Complex<T> Asin(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

Return Value

Complex<T>
The inverse sine of the complex number.

See Also