Returns the inverse tangent of a number with the specified accuracy.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Atan2(
BigFloat y,
BigFloat x,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Public Shared Function Atan2 (
y As BigFloat,
x As BigFloat,
accuracyGoal As AccuracyGoal,
roundingMode As RoundingMode
) As BigFloat
public:
static BigFloat^ Atan2(
BigFloat^ y,
BigFloat^ x,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
static member Atan2 :
y : BigFloat *
x : BigFloat *
accuracyGoal : AccuracyGoal *
roundingMode : RoundingMode -> BigFloat
Parameters
- y
- Type: Extreme.MathematicsBigFloat
The y-coordinate of a point. - x
- Type: Extreme.MathematicsBigFloat
The x-coordinate of a point. - accuracyGoal
- Type: Extreme.MathematicsAccuracyGoal
An AccuracyGoal value that specifies the desired
accuracy of the result. - roundingMode
- Type: Extreme.MathematicsRoundingMode
A RoundingMode value that specifies how the result should be rounded.
Return Value
Type:
BigFloatThe inverse tangent of
y divided by
x with an accuracy
within
accuracyGoal.
Reference