I have the ideal point (500,700) and the calculated point (499.79,700.44). I want to calculate the error but i can't. Please help me out
Mostra commenti meno recenti
clc
clear
Idealpoint=(500,700)
calculatedpoint=(499.79,700.44)
error=?
4 Commenti
José-Luis
il 11 Giu 2014
What's the error function? Absolute error? Squared error? Separately for x and y?
Mehedi
il 11 Giu 2014
What have you tried so far? If you would like to learn how to perform basic arithmetics in Matlab, please refer to the "Getting started" part of the documentation.
absolute_error = abs((observed - simulated) ./ observed) .* 100
Mehedi
il 11 Giu 2014
Risposte (2)
José-Luis
il 11 Giu 2014
absolute_error = mean(abs((observed(:) - simulated(:)) ./ observed(:)) .* 100)
Star Strider
il 12 Giu 2014
How I would do it:
Idealpoint = [500,700];
calculatedpoint=[499.79,700.44];
pct_abs_err = 100 * abs((Idealpoint-calculatedpoint)./Idealpoint)
produces:
pct_abs_err =
42.0000e-003 62.8571e-003
2 Commenti
Mehedi
il 12 Giu 2014
Star Strider
il 12 Giu 2014
The usual practice is to calculate the error for each one.
If you want the combined error, I suppose taking the mean of both would work:
pct_abs_err = mean(100 * abs((Idealpoint-calculatedpoint)./Idealpoint))
Categorie
Scopri di più su Operating on Diagonal Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!