Why are these two RMSE yield different results?
1 回表示 (過去 30 日間)
古いコメントを表示
LM_error= sqrt(mean(((trueLm-estLm).^2),2));
LM_error= sqrt(sum(((trueLm-estLm).^2),2)/length(data));
0 件のコメント
回答 (1 件)
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Robotics についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!