BigFloat.Pow(BigFloat, Int32) Method

Raises a number to the specified power.

Definition

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

Parameters

value  BigFloat
A BigFloat value.
exponent  Int32
The exponent.

Return Value

BigFloat
value raised to the power exponent.

Remarks

The result has the same relative accuracy as value.

Exceptions

ArgumentNullExceptionvalue is null.

See Also