Approximation

From wiki
Revision as of 15:30, 25 December 2018 by Hdridder (talk | contribs) (Created page with "The [https://en.wikipedia.org/wiki/Approximation_error Approximation error] ([https://nl.wikipedia.org/wiki/Benaderingsfout benaderingsfout]) is the difference between a calcu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The Approximation error (benaderingsfout) is the difference between a calculated value and the real value. By dividing it by the real value you get the relative error. A bit relative error indicates bad calculation. The largest relative error between two arrays as percentage:

np.mean(abs(calculated - real))                  # Average of the absolute errors 
np.mean(abs(calculated - real) / real )          # Average of the differences relative to the real values
np.mean(abs(calculated - real) / real ) * 100    # The relative error as percentage.