Write a statement that calculates the percent error between
Write a statement that calculates the percent error between variables containing amplitude data for two separate waves. Percent Difference = |A - B/(A + B/2)|*100%
Solution
In cpp/C
#include<cmath>
double percentDifference;
percentDifference=abs((A-B)/((A+B)/2)))*100.0;
In java also same but use Math.abs () method instead.
