Skip to content

Instantly share code, notes, and snippets.

@snluu
Created June 14, 2012 05:44
Show Gist options
  • Save snluu/2928186 to your computer and use it in GitHub Desktop.
Save snluu/2928186 to your computer and use it in GitHub Desktop.
Log2
val lnOf2 = scala.math.log(2) // natural log of 2
def log2(x: Double): Double = scala.math.log(x) / lnOf2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment