Returns the cosine of an angle using accurate argument reduction.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static (double , double ) SinCos(
double angle
)
Public Shared Function SinCos (
angle As Double
) As ( As Double, As Double)
public:
static ValueTuple<double, double> SinCos(
double angle
)
static member SinCos :
angle : float -> ValueTuple<float, float>
Parameters
- angle
- Type: SystemDouble
An angle in radians.
Return Value
Type:
ValueTupleDouble,
DoubleThe cosine of
angle computed to full precision.
Reference