vote up 0 vote down star

Sort of a quick question. I'm writing:

puts "%.3f %.4f %.5f" % [3.998877, 3.998877, 3.998877]

and get the following output:

3.999 3.9989 3.99888

sprintf simply rounds the numbers. How do I restrict that rounding?

flag

4 Answers

vote up 1 vote down check
>> 3.998877.to_s[/^\d+\.\d{3}/].to_f
=> 3.998
>> 3.998877.to_s[/^\d+\.\d{4}/].to_f
=> 3.9988
link|flag
Not bad solution – gmile Oct 4 at 13:38
vote up 1 vote down
>> def truncN f, digits
>>    t = 10.0 ** digits
>>    "%.#{digits}f" % ((f * t).truncate / t)
>> end
=> nil
>> n
=> 1.11181111
>> "%.3f" % n
=> "1.112"
>> truncN n, 3
=> "1.111"
link|flag
vote up 0 vote down

To get the numbers 'as is', you should store them as strings. As soon as you represent them as floats you lose information about the amount of built-in precision.

link|flag
Why not store them as rational numbers instead? – Robert L Oct 3 at 3:53
depends what you want to do with them later, I guess. – Peter Oct 3 at 3:55
vote up 1 vote down

you will probably need to truncate the numbers to the accuracy that you want.

f = 3.1919183
puts (f * 1000).truncate() / 1000
link|flag
sorry? could you give an example? – gmile Oct 2 at 22:03
1  
I'm not sure what you mean by "restrict the rounding". Specifically, what result are you looking for in your above example? – Jeff Godfrey Oct 2 at 22:07
I just want my numbers 'as is': 3.998 3.9988 3.99887 – gmile Oct 2 at 22:09
so that would be truncation. – rampion Oct 2 at 22:39

Your Answer

Get an OpenID
or

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