Big Float.Atan 2 Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Atan2( | Returns the inverse tangent of a number. |
Atan2( | Returns the inverse tangent of a number with the specified accuracy. |
Atan2( | Returns the inverse tangent of a number with the specified accuracy. |
Atan2(BigFloat, BigFloat)
Returns the inverse tangent of a number.
public static BigFloat Atan2(
BigFloat y,
BigFloat x
)
Parameters
Return Value
BigFloatThe inverse tangent of y divided by x adjusted for the signs.
Implements
IFloatingPointIeee754<TSelf>.Atan2(TSelf, TSelf)Remarks
The result has the same relative precision as the smaller of the relative precisions of x and y. The result has the same sign as y.
Exceptions
Argument | x is null. -or- y is null. |
Atan2(BigFloat, BigFloat, AccuracyGoal)
Returns the inverse tangent of a number with the specified accuracy.
public static BigFloat Atan2(
BigFloat y,
BigFloat x,
AccuracyGoal accuracyGoal
)
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.
Return Value
BigFloatThe inverse tangent of y divided by x adjusted for the signs with an accuracy within accuracyGoal.
Exceptions
Argument | x is null. -or- y is null. |
Atan2(BigFloat, BigFloat, AccuracyGoal, RoundingMode)
Returns the inverse tangent of a number with the specified accuracy.
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
BigFloatThe inverse tangent of y divided by x with an accuracy within accuracyGoal.
Exceptions
Argument | x is null. -or- y is null. |