DecimalMath.Asin Method

Returns the angle whose sine is the specified number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static decimal Asin(
	decimal value
)

Parameters

value  Decimal
A number representing a sine, where -1 ≤value≤ 1.

Return Value

Decimal
An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2 -or- System.Double.NaN if value < -1 or value > 1.

Exceptions

ArgumentOutOfRangeExceptionvalue is less than -1 or greater than +1.

See Also