Created
December 13, 2012 17:28
-
-
Save djo/4278129 to your computer and use it in GitHub Desktop.
Helper to round a number to the desired multiple 0.5.
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
# Returns a number rounded to the desired multiple 0.5, | |
# analog of excel's MROUND(A1, 0.05). | |
def mround(number) | |
(number * 20).round.to_f / 20 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment