BigFloat.SinCos(BigFloat, BigFloat, 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 void SinCos(
	BigFloat angle,
	out BigFloat sin,
	out BigFloat cos
)

Parameters

angle  BigFloat
A BigFloat value that specifies the angle in radians.
sin  BigFloat
On exit, the sine of angle.
cos  BigFloat
On exit, the cosine of angle.

Remarks

The result has the same relative accuracy as the absolute accuracy of angle.

Exceptions

ArgumentNullExceptionangle is null.

See Also