Big Float.Exp M 1 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, minus 1. |
Exp | Returns e raised to the specified power, minus 1, to the specified accuracy. |
Exp | Returns e raised to the specified power, minus 1, to the specified accuracy. |
ExpM1(BigFloat)
Returns e raised to the specified power, minus 1.
public static BigFloat ExpM1(
BigFloat value
)
Parameters
Return Value
BigFloatThe number e raised to the power value.
Implements
IExponentialFunctions<TSelf>.ExpM1(TSelf)Remarks
The result has the same relative accuracy as value.
Exceptions
Argument | value is null. |
ExpM1(BigFloat, AccuracyGoal)
Returns e raised to the specified power, minus 1, to the specified accuracy.
public static BigFloat ExpM1(
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. |
ExpM1(BigFloat, AccuracyGoal, RoundingMode)
Returns e raised to the specified power, minus 1, to the specified accuracy.
public static BigFloat ExpM1(
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. |