I was just reading about rounding errors in C++. So, if I'm making a math intense program (or any important calculations) should I just drop floats all together and use only doubles or is there an easier way to prevent rounding errors?
|
|
Obligatory lecture: What Every Programmer Should Know About Floating-Point Arithmetic. Also, try reading IEEE Floating Point standard. You'll always get rounding errors. Unless you use an Or, you could use integer arithmetic, converting to floats only when needed. This is still hard to do, you have to decide if it's worth it. Lastly, you can use |
|||||||
|
|
The rounding errors are normally very insignificant, even using floats. Mathematically-intense programs like games, which do very large numbers of floating-point computations, often still use single-precision. |
|||||||
|