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://jp.mathworks.com/matlabcentral/fileexchange/21383-rmse), MATLAB Central File Exchange. に取得済み.

MATLAB リリースの互換性
作成: R2006a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersPolynomials についてさらに検索
謝辞

ヒントを与えたファイル: rmse(true_values, prediction)

バージョン 公開済み リリース ノート
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!