Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having problems rounding. I have a float, which I want to round to the hundredth of a decimal. However, I can only use .round which basically turns it into an int, meaning 2.34.round # => 2. Is there a simple effect way to do something like 2.3465 # => 2.35

share|improve this question

4 Answers

up vote 32 down vote accepted

When displaying, you can use (say)

>> '%.2f' % 2.3465
=> "2.35"

If you want to store it rounded, you can use

>> (2.3465*100).round / 100.0
=> 2.35
share|improve this answer
great answer thank you, I knew there was a simple way to do it. – user211662 Jan 13 '10 at 3:45
Thanks. I didn't realize sprintf would take care of rounding for me. sprintf '%.2f', 2.3465 also works. – Noah Sussman Apr 7 '12 at 17:01

Pass an argument to round containing the number of decimal places to round to

>> 2.3465.round
=> 2
>> 2.3465.round(2)
=> 2.35
>> 2.3465.round(3)
=> 2.347
share|improve this answer
3  
This would seem more sensible than multiplying, rounding and dividing. +1 – Mark Embling Jan 13 '10 at 11:41
3  
Hmm this method doesn't seem to be in ruby 1.8.7. Maybe in 1.9? – Brian Armstrong Feb 27 '11 at 0:40
2  
@Brian. This is definitely in 1.9 and is also in rails (Which this question was tagged with) – Steve Weet Feb 28 '11 at 0:09
Ruby 1.8.7's round method doesn't have this ability, adding the decimal place rounding parameter is a 1.9 ability – bobmagoo Jan 15 at 21:54

what about (2.3465*100).round()/100?

share|improve this answer
this won't work - it will use integer division and give you 2. – Peter Jan 13 '10 at 3:43
1  
you could use 100.0 – thenoviceoof Jan 13 '10 at 3:45

You can add a method in Float Class, I catched this from stackoverflow:

class Float
    def precision(p)
        # Make sure the precision level is actually an integer and > 0
        raise ArgumentError, "#{p} is an invalid precision level. Valid ranges are integers > 0." unless p.class == Fixnum or p < 0
        # Special case for 0 precision so it returns a Fixnum and thus doesn't have a trailing .0
        return self.round if p == 0
        # Standard case  
        return (self * 10**p).round.to_f / 10**p
    end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.