BigFloat.SinCos(BigFloat) Method

Calculates the sine and the cosine of an angle.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static (BigFloat , BigFloat ) SinCos(
	BigFloat angle
)

Parameters

angle  BigFloat
A BigFloat value that specifies the angle in radians.

Return Value

ValueTuple<BigFloat, BigFloat>
A tuple consisting of the sine and cosine of angle.

Remarks

The results have the same relative accuracy as the absolute accuracy of angle.

Exceptions

ArgumentNullExceptionangle is null.

See Also