BigFloat.Pow(BigFloat, BigFloat, AccuracyGoal, RoundingMode) Method

Raises a number to the specified power with the specified accuracy.

Definition

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

Parameters

value  BigFloat
A BigFloat value.
exponent  BigFloat
The exponent.
accuracyGoal  AccuracyGoal
An AccuracyGoal value that specifies the desired accuracy of the result.
roundingMode  RoundingMode
A RoundingMode value that specifies how the result should be rounded.

Return Value

BigFloat
value raised to the power exponent with an accuracy within accuracyGoal.

Exceptions

ArgumentNullException

value is null.

-or-

exponent is null.

See Also