Effacer les filtres
Effacer les filtres

Why are these two RMSE yield different results?

1 vue (au cours des 30 derniers jours)
Raja Joko Musridho
Raja Joko Musridho le 8 Avr 2018
LM_error= sqrt(mean(((trueLm-estLm).^2),2));
LM_error= sqrt(sum(((trueLm-estLm).^2),2)/length(data));

Réponses (1)

Image Analyst
Image Analyst le 8 Avr 2018
Modifié(e) : Image Analyst le 8 Avr 2018
Why should they be? The first method does not even use the array called data at all so it doesn't surprise me that they are different.
And why not simply use immse()?
  5 commentaires
Image Analyst
Image Analyst le 10 Avr 2018
Not necessarily, but sum(x)/length(x) IS the same as mean(x)?
Raja Joko Musridho
Raja Joko Musridho le 11 Avr 2018
Thank you
But I am still wondering why the results I got are different to each other. The sum((trueLM-estLM).^2)/length(x)

Connectez-vous pour commenter.

Catégories

En savoir plus sur Robotics dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by