Big Float.Log 1Plus X 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
Log1Plus | Returns the natural logarithm of 1 plus a number with the default accuracy. |
Log1Plus | Returns the natural logarithm of 1 plus a number with the specified accuracy. |
Log1Plus | Returns the natural logarithm of 1 plus a number with the specified accuracy. |
Log1PlusX(BigFloat)
Returns the natural logarithm of 1 plus a number with the default accuracy.
public static BigFloat Log1PlusX(
BigFloat value
)
Parameters
Return Value
BigFloatThe natural logarithm of 1 + value.
Exceptions
Argument | value is null. |
Log1PlusX(BigFloat, AccuracyGoal)
Returns the natural logarithm of 1 plus a number with the specified accuracy.
public static BigFloat Log1PlusX(
BigFloat value,
AccuracyGoal accuracyGoal
)
Parameters
- value BigFloat
- A BigFloat value.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy of the result.
Return Value
BigFloatThe natural logarithm of 1 + value with an accuracy within accuracyGoal.
Exceptions
Argument | value is null. |
Log1PlusX(BigFloat, AccuracyGoal, RoundingMode)
Returns the natural logarithm of 1 plus a number with the specified accuracy.
public static BigFloat Log1PlusX(
BigFloat value,
AccuracyGoal accuracyGoal,
RoundingMode roundingMode
)
Parameters
- value BigFloat
- A BigFloat value.
- accuracyGoal AccuracyGoal
- An AccuracyGoal value that specifies the desired accuracy of the result.
- roundingMode RoundingMode
- A RoundingMode value that specifies how the result should be rounded.
Return Value
BigFloatThe natural logarithm of 1 + value with an accuracy within accuracyGoal.
Exceptions
Argument | value is null. |