Returns the base 10 logarithm of a specified number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static decimal Log10(
decimal value
)
Public Shared Function Log10 (
value As Decimal
) As Decimal
public:
static Decimal Log10(
Decimal value
)
static member Log10 :
value : decimal -> decimal
Parameters
- value
- Type: SystemDecimal
A number whose logarithm is to be found.
Return Value
Type:
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
Reference