BigRational.Pow Method

Raises a BigRational to an integer power.

Definition

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

Parameters

value  BigRational
A BigRational.
exponent  Int32
The integer exponent.

Return Value

BigRational
The number value raised to the power exponent.

Exceptions

DivideByZeroExceptionvalue is zero and exponent is less than zero.

See Also