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 void SinCos(
BigFloat angle,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode,
out BigFloat sin,
out BigFloat cos
)
Public Shared Sub SinCos (
angle As BigFloat,
accuracyGoal As AccuracyGoal,
roundingMode As RoundingMode,
<OutAttribute> ByRef sin As BigFloat,
<OutAttribute> ByRef cos As BigFloat
)
public:
static void SinCos(
BigFloat^ angle,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode,
[OutAttribute] BigFloat^% sin,
[OutAttribute] BigFloat^% cos
)
static member SinCos :
angle : BigFloat *
accuracyGoal : AccuracyGoal *
roundingMode : RoundingMode *
sin : BigFloat byref *
cos : BigFloat byref -> unit
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. - sin
- Type: Extreme.MathematicsBigFloat
On exit, the sine of angle. - cos
- Type: Extreme.MathematicsBigFloat
On exit, the cosine of angle.
Reference