Returns the inverse tangent of a number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Atan2(
BigFloat y,
BigFloat x
)
Public Shared Function Atan2 (
y As BigFloat,
x As BigFloat
) As BigFloat
public:
static BigFloat^ Atan2(
BigFloat^ y,
BigFloat^ x
)
static member Atan2 :
y : BigFloat *
x : BigFloat -> BigFloat
Parameters
- y
- Type: Extreme.MathematicsBigFloat
A BigFloat value. - x
- Type: Extreme.MathematicsBigFloat
A BigFloat value.
Return Value
Type:
BigFloatThe inverse tangent of
y divided by
x adjusted for
the signs.
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.
Reference