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?
|
|
|
|
|
|
|
|
||
|
|
|
|
||
|
|
|
|
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. |
||
|
|
you will probably need to truncate the numbers to the accuracy that you want.
|
||||||||||
|