ClojureDocs

Nav

Namespaces

log10

clojure.math

Available since 1.11
  • (log10 a)
Returns the logarithm (base 10) of a.
If a is ##NaN or negative => ##NaN
If a is ##Inf => ##Inf
If a is zero => ##-Inf
See: https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html#log10-double-