Complex<T>.Asin Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

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

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.

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