rounding errors are when the number that is stored is not exactly the number expected
I'm working with floating point numbers. If I do: import numpy as np np.round(100.045, 2) I get: Out[15]: 100.04 Obviously, this …
python numpy floating-point rounding rounding-error