Big Float.Exp Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Exp( | Returns e raised to the specified power. |
Exp( | Returns e raised to the specified power to the specified accuracy. |
Exp( | Returns e raised to the specified power to the specified accuracy. |
Exp(BigFloat)
Returns e raised to the specified power.
public static BigFloat Exp(
BigFloat value
)
Parameters
Return Value
BigFloatThe number e raised to the power value.
Implements
IExponentialFunctions<TSelf>.Exp(TSelf)Remarks
The result has the same relative accuracy as value.
Exceptions
Argument | value is null. |
Exp(BigFloat, AccuracyGoal)
Returns e raised to the specified power to the specified accuracy.
public static BigFloat Exp(
BigFloat value,
AccuracyGoal accuracyGoal
)
Parameters
- value BigFloat
- A BigFloat value that specifies the exponent.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy.
Return Value
BigFloatThe number e raised to the power value.
Exceptions
Argument | value is null. |
Exp(BigFloat, AccuracyGoal, RoundingMode)
Returns e raised to the specified power to the specified accuracy.
public static BigFloat Exp(
BigFloat value,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Parameters
- value BigFloat
- A BigFloat value that specifies the exponent.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy.
- roundingMode RoundingMode
- A RoundingMode value that specifies how the result should be rounded.
Return Value
BigFloatThe number e raised to the power value.
Exceptions
Argument | value is null. |