Returns e raised to the specified power to the specified accuracy.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Exp(
BigFloat value,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Public Shared Function Exp (
value As BigFloat,
accuracyGoal As AccuracyGoal,
roundingMode As RoundingMode
) As BigFloat
public:
static BigFloat^ Exp(
BigFloat^ value,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
static member Exp :
value : BigFloat *
accuracyGoal : AccuracyGoal *
roundingMode : RoundingMode -> BigFloat
Parameters
- value
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the exponent. - accuracyGoal
- Type: Extreme.MathematicsAccuracyGoal
An AccuracyGoal value that specifies the desired accuracy. - roundingMode
- Type: Extreme.MathematicsRoundingMode
A RoundingMode value that specifies how the result should be rounded.
Return Value
Type:
BigFloatThe number e raised to the power
value.
Reference