Calculates the sine and the cosine of an angle with the specified accuracy.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static (BigFloat , BigFloat ) SinCos(
BigFloat angle,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Public Shared Function SinCos (
angle As BigFloat,
accuracyGoal As AccuracyGoal,
roundingMode As RoundingMode
) As ( As BigFloat, As BigFloat)
public:
static ValueTuple<BigFloat^, BigFloat^> SinCos(
BigFloat^ angle,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
static member SinCos :
angle : BigFloat *
accuracyGoal : AccuracyGoal *
roundingMode : RoundingMode -> ValueTuple<BigFloat, BigFloat>
Parameters
- angle
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the angle in radians. - accuracyGoal
- Type: Extreme.MathematicsAccuracyGoal
An AccuracyGoal value
that specifies the desired
accuracy of the result. - roundingMode
- Type: Extreme.MathematicsRoundingMode
A RoundingMode value
that specifies how the result should be rounded.
Return Value
Type:
ValueTupleBigFloat,
BigFloatA tuple consisting of the sine and cosine of
angle.
Reference