BigFloat.Atan2(BigFloat, BigFloat, AccuracyGoal, RoundingMode) Method

Returns the inverse tangent of a number with the specified accuracy.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigFloat Atan2(
	BigFloat y,
	BigFloat x,
	AccuracyGoal accuracyGoal,
	RoundingMode roundingMode
)

Parameters

y  BigFloat
The y-coordinate of a point.
x  BigFloat
The x-coordinate of a point.
accuracyGoal  AccuracyGoal
An AccuracyGoal value that specifies the desired accuracy of the result.
roundingMode  RoundingMode
A RoundingMode value that specifies how the result should be rounded.

Return Value

BigFloat
The inverse tangent of y divided by x with an accuracy within accuracyGoal.

Exceptions

ArgumentNullException

x is null.

-or-

y is null.

See Also