4.0

4.0 | 1 rating Rate this file 203 downloads (last 30 days) File Size: 466 Bytes File ID: #21383

RMSE

by Felix Hebeler

 

09 Sep 2008 (Updated 27 Nov 2008)

No BSD License  

calculates root mean square error from data vector or matrix and the corresponding estimates.

Download Now | Watch this File

File Information
Description

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.

MATLAB release MATLAB 7.2 (R2006a)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (6)
09 Sep 2008 Durga Shrestha

This code is without input argument checking.

To compute more types of goodness of fit (including RMSE, coefficient of determination, mean absolute relative error etc.) please have a look
http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=7968&objectType=file

10 Sep 2008 Wolfgang Schwanghart

Hi Felix,

the formula becomes incorrect as soon as you have nans in your arrays. You should remove nans first in both arrays

I = isnan(data) | isnan(estimate);
data = data(I);
estimate = estimate(I);

and then apply the formula. That even allows you to use sum instead of nansum, thereby avoiding dependence on the statistical toolbox.

11 Sep 2008 Felix Hebeler

Thanks for the feedback Wolfgang, I completely forgot that nansum needs the statistical toolbox, and of course you are right that it becomes incorrect with nans. I should have divided by numel(~isnan(data)), but deleting all NaNs in this case _is_ better! Your version actually would extract all NaNs and discard the values, so I used
I = ~isnan(data) & ~isnan(estimate); instead, which works a treat!

Durga, it's great you advertise your script on my page ;-) I see no point in input argument checking for this oneliner though - in my case I would have to reshape my matrices to use your script, not sure if that is better...

Anyway, once your script takes care of NaNs as suggested by Wolfgang, it is surely great as it calculates more than one goodness of fit.

09 Oct 2008 Gary Merkoske

you have one too many SUM() in the eqn, although it appears to be harmless. Am I correct? RMS Error is then;
r=sqrt(sum((data-estimate).^2)/numel(data))

10 Oct 2008 Felix Hebeler

@Gary: no, you need two sums if you process matrices, the first sums across all columns, the second then sums across the resulting vector. If you process vectors, the second sum calculates the sum of a scalar. Faster than checking for dimensions first.

27 Oct 2008 Wolfgang Schwanghart

Hi Felix and Gary,

yes, the two sums could be avoided by simply writing
r=sqrt(sum((data(:)-estimate(:)).^2)/numel(data))

The computation time is about the same but readability might be enhanced by using the colon operator.

Best regards,
Wolfgang

Please login to add a comment or rating.
Updates
11 Sep 2008

include NaN checking

11 Sep 2008

- delete NaNs and use sum instead of nansum, eliminating the need for the statistical toolbox

13 Oct 2008

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

27 Nov 2008

Updated description and code for better readability and

Tag Activity for this File
Tag Applied By Date/Time
root mean square error Felix Hebeler 22 Oct 2008 10:18:29
rmse Felix Hebeler 22 Oct 2008 10:18:29
general Felix Hebeler 22 Oct 2008 10:18:29
mathematics Felix Hebeler 22 Oct 2008 10:18:29
mathematics Cristina McIntire 07 Nov 2008 13:00:19
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com