DecimalMath.Log(Decimal) Method

Returns the natural (base e) logarithm of a specified number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static decimal Log(
	decimal value
)

Parameters

value  Decimal
A number whose logarithm is to be found.

Return Value

Decimal
One of the values in the following table. value parameterReturn value Positive The natural logarithm of value; that is, ln value, or log edZero System.Double.NegativeInfinityNegative System.Double.NaNEqual to System.Double.NaNSystem.Double.NaNEqual to System.Double.PositiveInfinitySystem.Double.PositiveInfinity

Exceptions

OverflowExceptionvalue is zero.
ArgumentOutOfRangeExceptionvalue is less than zero.

See Also