I have a case where I am doing some math on a Float object and when I call to_i on it it is being reduced by one.
value = 0.29 * 100
value.to_i
=> 28
I know that floating point numbers are inexact representations but this is off by more than I would expect. What is going on and how can I prevent this?
I'm using ruby 1.8.7 (it also happens in 1.8.6).
value.ceil– Dan Heberden Dec 6 '11 at 18:02#roundanyway. – DigitalRoss Dec 6 '11 at 19:59