Returns the square root of a number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Root(
BigFloat value,
int order
)
Public Shared Function Root (
value As BigFloat,
order As Integer
) As BigFloat
public:
static BigFloat^ Root(
BigFloat^ value,
int order
)
static member Root :
value : BigFloat *
order : int -> BigFloat
Parameters
- value
- Type: Extreme.MathematicsBigFloat
A BigFloat value. - order
- Type: SystemInt32
The order of the root.
Return Value
Type:
BigFloatThe square root of
value.
The result has the same relative accuracy as value.
Reference