BigFloat.Cos(BigFloat, AccuracyGoal) Method

Returns the cosine of an angle with the specified accuracy.

Definition

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

Parameters

angle  BigFloat
A BigFloat value that specifies the angle in radians.
accuracyGoal  AccuracyGoal
An AccuracyGoal value that specifies the desired accuracy of the result.

Return Value

BigFloat
The cosine of angle with an accuracy within accuracyGoal.

Exceptions

ArgumentNullExceptionangle is null.

See Also