BigFloat.Atan2(BigFloat, BigFloat) Method

Returns the inverse tangent of a number.

Definition

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

Parameters

y  BigFloat
A BigFloat value.
x  BigFloat
A BigFloat value.

Return Value

BigFloat
The inverse tangent of y divided by x adjusted for the signs.

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

ArgumentNullException

x is null.

-or-

y is null.

See Also