RMSE
バージョン 1.1.0.0 (466 Bytes) 作成者:
Felix Hebeler
calculates root mean square error from data vector or matrix and the corresponding estimates.
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カテゴリ
- MATLAB > Mathematics > Elementary Math > Polynomials >
Help Center および MATLAB Answers で Polynomials についてさらに検索
タグ
謝辞
ヒントを与えたファイル: rmse(true_values, prediction)
