Calculates the sine and the cosine of an angle.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static (BigFloat , BigFloat ) SinCos(
BigFloat angle
)
Public Shared Function SinCos (
angle As BigFloat
) As ( As BigFloat, As BigFloat)
public:
static ValueTuple<BigFloat^, BigFloat^> SinCos(
BigFloat^ angle
)
static member SinCos :
angle : BigFloat -> ValueTuple<BigFloat, BigFloat>
Parameters
- angle
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the angle in radians.
Return Value
Type:
ValueTupleBigFloat,
BigFloatA tuple consisting of the sine and cosine of
angle.
The results have the same relative accuracy as the absolute accuracy of angle.
Reference