Returns the inverse tangent of a number.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
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.
Numerical Libraries
Supported in: 6.0, 5.x, 4.x
Reference