MathNLog10TNumeric Method

Returns the base 10 logarithm of a specified number.

Definition

Namespace: Jodosoft.Numerics
Assembly: Jodosoft.Numerics (in Jodosoft.Numerics.dll) Version: 2.0
public static TNumeric Log10<TNumeric>(
	TNumeric x
)
where TNumeric : struct, new(), INumeric<TNumeric>

Parameters

x  TNumeric
A number whose logarithm is to be found.

Type Parameters

TNumeric

Return Value

TNumeric
The base 10 log of x; that is, log 10x.

Remarks

This method may return NaN or Infinity. If NaN or Infinity cannot be represented by TNumeric, then this method may throw an ArithmeticException.

See Also