Java.Lang.StrictMath.Log10 Method
Returns the closest double approximation of the base 10 logarithm of the argument.

Syntax

[Android.Runtime.Register("log10", "(D)D", "")]
public static double Log10 (double d)

Parameters

d
the value whose base 10 log has to be computed.

Returns

Documentation for this section has not yet been entered.

Remarks

Returns the closest double approximation of the base 10 logarithm of the argument.

Special cases:

  • log10(+0.0) = -infinity
  • log10(-0.0) = -infinity
  • log10((anything
  • log10(+infinity) = +infinity
  • log10(-infinity) = NaN
  • log10(NaN) = NaN

[Android Documentation]

Requirements

Namespace: Java.Lang
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1