19 lines
383 B
Matlab
19 lines
383 B
Matlab
function [x, y] = cummErrorCurve( errorVec )
|
|
%CUMMERRORCURVE Summary of this function goes here
|
|
% Detailed explanation goes here
|
|
|
|
|
|
spacing = 0.001;
|
|
|
|
sampling = [0:spacing:max(errorVec)];
|
|
|
|
x = sampling;
|
|
|
|
y = zeros(numel(sampling,1));
|
|
|
|
for i=1:numel(sampling)
|
|
|
|
y(i) = sum(errorVec < sampling(i)) / numel(errorVec);
|
|
end
|
|
end
|
|
|