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));
댓글 수: 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!