I am trying to find the %Accuracy, in which I used this equation: %Accuracy = 100-%Error.
So far, I have faced two problems with this equation:
When the Exact Value is Zero, the fraction can’t be used -> Solved by adding the same value to both Exact and Measured, to avoid the null denominator
When the Measured value is twice bigger or smaller, the %Accuracy value will be in negative values, In which I don't see the meaning behind it.
For example:
if: Exact = 20; Measured = 25; %Accuracy = 75%;
But, when: Exact = 20; Measured = 45; %Accuracy = -25%;
What is the meaning of -25%? and How to change the range of [0-100], to take the values that are outside of it accurately?
Appreciated :)
– Teco Aug 22 '18 at 08:52