Docs @ Psychtoolbox Wiki : ComputeRMSE

Search PTB Function help:
homepsychtoolbox.orgpage updateslogin

ComputeRMSE

PsychtoolboxPsychGamma

rmse = ComputeRMSE(data,predict)

Compute fractional RMSE between data and prediction.
Inputs should be column vectors.
Actual code is:
diff = predict-data;
rmse = sqrt((diff'*diff)/(data'*data));

2/3/96 dhb Added improved comments.




Path   Retrieve current version of ComputeRMSE.m from berliOS: beta | view WebSVN changelog of trunk branch
Psychtoolbox/PsychGamma/ComputeRMSE.m


Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki
Page was generated in 0.0162 seconds