Operations<T>.Log1PlusX Property

Gets a delegate that returns the logarithm of 1 plus the argument.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Func<T, T> Log1PlusX { get; }

Property Value

Func<T, T>

Remarks

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 takes extra care to avoid this loss of precision.

See Also