Why are these two RMSE yield different results?

2 次查看(过去 30 天)
LM_error= sqrt(mean(((trueLm-estLm).^2),2));
LM_error= sqrt(sum(((trueLm-estLm).^2),2)/length(data));

回答(1 个)

Image Analyst
Image Analyst 2018-4-8
编辑:Image Analyst 2018-4-8
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 个评论
Image Analyst
Image Analyst 2018-4-10
Not necessarily, but sum(x)/length(x) IS the same as mean(x)?
Raja Joko Musridho
Raja Joko Musridho 2018-4-11
Thank you
But I am still wondering why the results I got are different to each other. The sum((trueLM-estLM).^2)/length(x)

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Splines 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by