No BSD License  

Highlights from
RMSE

from RMSE by Felix Hebeler
calculates root mean square error from data vector or matrix and the corresponding estimates.

r=rmse(data,estimate)
function r=rmse(data,estimate)
% Function to calculate root mean square error from a data vector or matrix 
% and the corresponding estimates.
% Usage: r=rmse(data,estimate)
% Note: data and estimates have to be of same size
% Example: r=rmse(randn(100,100),randn(100,100));

% delete records with NaNs in both datasets first
I = ~isnan(data) & ~isnan(estimate); 
data = data(I); estimate = estimate(I);

r=sqrt(sum((data(:)-estimate(:)).^2)/numel(data));

Contact us at files@mathworks.com