BigFloat.Root(BigFloat, Int32) Method

Returns the square root of a number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigFloat Root(
	BigFloat value,
	int order
)

Parameters

value  BigFloat
A BigFloat value.
order  Int32
The order of the root.

Return Value

BigFloat
The square root of value.

Remarks

The result has the same relative accuracy as value.

Exceptions

ArgumentNullExceptionvalue is null.

See Also