UncertainMathAtan2 Method |
Computes the arctangent of the ratio of two uncertain values.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static UncertainValue Atan2(
UncertainValue x,
UncertainValue y
)
Public Shared Function Atan2 (
x As UncertainValue,
y As UncertainValue
) As UncertainValue
public:
static UncertainValue Atan2(
UncertainValue x,
UncertainValue y
)
static member Atan2 :
x : UncertainValue *
y : UncertainValue -> UncertainValue
Parameters
- x
- Type: Meta.NumericsUncertainValue
The argument of the numerator. - y
- Type: Meta.NumericsUncertainValue
The argument of the denominator.
Return Value
Type:
UncertainValueThe arctangent of the quotient x/y.
See Also