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 void SinCos(
BigFloat angle,
out BigFloat sin,
out BigFloat cos
)
Public Shared Sub SinCos (
angle As BigFloat,
<OutAttribute> ByRef sin As BigFloat,
<OutAttribute> ByRef cos As BigFloat
)
public:
static void SinCos(
BigFloat^ angle,
[OutAttribute] BigFloat^% sin,
[OutAttribute] BigFloat^% cos
)
static member SinCos :
angle : BigFloat *
sin : BigFloat byref *
cos : BigFloat byref -> unit
Parameters
- angle
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the angle in radians. - sin
- Type: Extreme.MathematicsBigFloat
On exit, the sine of angle. - cos
- Type: Extreme.MathematicsBigFloat
On exit, the cosine of angle.
The result has the same relative accuracy as the absolute accuracy of angle.
Reference