How do I avoid floating point errors in financial calculations performed with Colt matrix libraries?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Some essential reading about the nastiness of floating point types: What Every Computer Scientist Should Know About Floating Point Arithmetic And something more Java flavoured: How Java’s Floating-Point Hurts Everyone Everywhere |
||||
|
|
|
For financials it's more common to use BigDecimal and related classes. float and doubles are in any case very susceptible to rounding errors. You may want to look at Apache Commons Math if you decide to give BigDecimal a try. |
|||
|
|
|
One common technique is to use integers and keep track of the decimals yourself. For example you can decide that all you currency amount will be represented with 3 decimal points accuracy. So instead of writing:
you write
and when you want to print the amount:
|
||||
|
|