/usr/share/psychtoolbox-3/PsychGamma/ComputeRMSE.m is in psychtoolbox-3-common 3.0.11.20140816.dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | function rmse = ComputeRMSE(data,predict,SUPRESS_WARNING)
% rmse = ComputeRMSE(data,predict,SUPRESS_WARNING)
%
% Compute a root fractional SSE between data and prediction.
% Inputs should be column vectors.
% Actual code is:
% diff = predict-data;
% rmse = sqrt((diff'*diff)/(data'*data));
%
% The routine badly named, because what it computes
% is not what anyone would call an RMSE. A better
% name for the routine would be ComptueFRSSE or something
% like that.
%
% 2/3/96 dhb Added improved comments.
% 1/13/13 dhb Added cautionary comment about what this routine does.
% as well as message that would tell an unsuspecting user
% at runtime.
% dhb Added mechanism to suppress the warning message.
% Warning about misnomer of routine.
if (nargin < 3 || isempty(SUPRESS_WARNING))
SUPRESS_WARNING = 0;
end
if (~SUPRESS_WARNING)
fprintf('WARNING: Although this routine computes an squared error measure\n');
fprintf('it is not what anyone would call the RMSE. I don''t know what I\n');
fprintf('thinking in 1996 when I wrote this.\n');
fprintf('\n');
fprintf('Although the routine is badly named, it does no seem like a good idea\n');
fprintf('to change its behavior silently, since someone may be happily using it\n');
fprintf('to do what it actually does.\n');
fprintf('\n');
fprintf('Call with additional argument SUPRESS_WARNING set to true to\n');
fprintf('supress this error message.\n');
fprintf('\n');
fprintf('- David Brainard, 13 Jan 2013.\n');
end
diff = predict-data;
rmse = sqrt((diff'*diff)/(data'*data));
|