Tagged Questions
2
votes
8answers
613 views
How to handle multiplication of numbers close to 1
I have a bunch of floating point numbers (Java doubles), most of which are very close to 1, and I need to multiply them together as part of a larger calculation. I need to do this a lot.
The problem ...
0
votes
2answers
70 views
Error in BigDecimal calculation
Consider the following spec:
require 'bigdecimal'
def total_percent(amounts)
percent_changes = amounts.each_cons(2).map { |a|
(a[1] - a[0]) / a[0] * BigDecimal.new('100.0')
}
...