Returns the angle whose tangent is the specified number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Quad Atan(
Quad value
)
Public Shared Function Atan (
value As Quad
) As Quad
public:
static Quad Atan(
Quad value
)
static member Atan :
value : Quad -> Quad
Parameters
- value
- Type: Extreme.MathematicsQuad
A number representing a tangent.
Return Value
Type:
Quad
An angle, θ, measured in radians, such that -π/2 ≤ θ ≤ π/2.
-or-
NaN if value equals
NaN,
-π/2 rounded to Quad precision (-1.5707963267949)
if value equals
NegativeInfinity,
or π/2 rounded to Quad precision
(1.5707963267949) if value equals
PositiveInfinity.
Reference