want to plot MSE for a given error
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Please somebody tell me how to write code for Mean Square error
0 commentaires
Réponse acceptée
Wayne King
le 31 Mai 2012
Assume x is one vector and y is another. you can think of x as your original and y the fit.
x = randn(100,1);
y = randn(100,1);
mean(abs(x-y).^2)
If X and Y are images
X= randn(256,256);
Y = randn(256,256);
absD = abs(X-Y).^2;
sum(absD(:))/numel(X)
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!