Created
June 14, 2012 05:44
-
-
Save snluu/2928186 to your computer and use it in GitHub Desktop.
Log2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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