Returns the sine of the specified angle.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static decimal Sin(
decimal angle
)
Public Shared Function Sin (
angle As Decimal
) As Decimal
public:
static Decimal Sin(
Decimal angle
)
static member Sin :
angle : decimal -> decimal
Parameters
- angle
- Type: SystemDecimal
An angle, measured in radians.
Return Value
Type:
Decimal
The sine of
angle. If
angle is equal to System.Double.NaN, System.Double.NegativeInfinity,
or System.Double.PositiveInfinity, this method returns System.Double.NaN.
Reference