Raises a number to the specified power.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Pow(
BigFloat value,
BigFloat exponent
)
Public Shared Function Pow (
value As BigFloat,
exponent As BigFloat
) As BigFloat
public:
static BigFloat^ Pow(
BigFloat^ value,
BigFloat^ exponent
)
static member Pow :
value : BigFloat *
exponent : BigFloat -> BigFloat
Parameters
- value
- Type: Extreme.MathematicsBigFloat
A BigFloat value. - exponent
- Type: Extreme.MathematicsBigFloat
The exponent.
Return Value
Type:
BigFloatvalue raised to the power
exponent with an accuracy
that meets the default accuracy goal.
The accuracy of the result is the smaller of the relative accuracies
of value and exponent.
Reference