DecimalMath.Log1PlusX Method

Returns the logarithm of 1 plus the argument.

DefinitionPermalink

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public static decimal Log1PlusX(
	decimal x
)

ParametersPermalink

x  Decimal
A real number greater than -1.

Return ValuePermalink

Decimal
The logarithm of 1 plus x.

RemarksPermalink

For small values of x, the logarithm of 1 + x is close to zero. When the logarithm is evaluated directly, this can cause significant round-off error. This function resolves this problem by using a direct approximations for x close to 1.

ExceptionsPermalink

ArgumentOutOfRangeException

x is less than or equal to -1.

See AlsoPermalink