RMSE

버전 1.1.0.0 (466 Bytes) 작성자: Felix Hebeler
calculates root mean square error from data vector or matrix and the corresponding estimates.
다운로드 수: 15.3K
업데이트 날짜: 2016/3/31

라이선스 보기

Short script that calculates root mean square error from data vector or matrix and the corresponding estimates.
Checks for NaNs in data and estimates and deletes them and then simply does:
r = sqrt( sum( (data(:)-estimate(:)).^2) / numel(data) );
That's it.

인용 양식

Felix Hebeler (2026). RMSE (https://kr.mathworks.com/matlabcentral/fileexchange/21383-rmse), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2006a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Polynomials에 대해 자세히 알아보기
도움

도움 준 파일: rmse(true_values, prediction)

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Updated description and code for better readability and
BSD update

1.0.0.0

By popular demand: using sum(data(:)) instead of sum(sum(data)). Thanks!