DecimalMath.Log10 Method

Returns the base 10 logarithm of a specified number.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static decimal Log10(
	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 parameter Return value Positive The base 10 log of value; that is, log 10d. Zero System.Double.NegativeInfinityNegative System.Double.NaNEqual to System.Double.NaNSystem.Double.NaNEqual to System.Double.PositiveInfinitySystem.Double.PositiveInfinity

Exceptions

OverflowException

value is zero.

ArgumentOutOfRangeException

value is less than zero.

See Also