BigFloat.Pow(BigFloat, BigFloat) 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,
	BigFloat exponent
)

Parameters

value  BigFloat
A BigFloat value.
exponent  BigFloat
The exponent.

Return Value

BigFloat
value raised to the power exponent with an accuracy that meets the default accuracy goal.

Remarks

The accuracy of the result is the smaller of the relative accuracies of value and exponent.

Exceptions

ArgumentNullException

value is null.

-or-

exponent is null.

See Also