Skip to content
Snippets Groups Projects
Commit 02d69876 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug in EP algorithm.

parent 919c2f8f
Branches
Tags
No related merge requests found
......@@ -230,15 +230,13 @@ while (t<sample_size)
end
% Test if periods is big enough.
delta = 0;
if ~isempty(idx)
delta = max(max(abs(tmp(idx,end-options_.ep.lp:end)./tmp(idx, ...
end-options_.ep.lp-1:end-1)-1)));
end;
if ~isempty(indx)
delta = max(delta,max(max(abs(tmp(indx,end-options_.ep.lp: ...
end)-tmp(indx,end-options_.ep.lp-1:end-1)))));
if length(tmp)>1 && ~isempty(idx)
delta = max(max(abs(tmp(idx,end-options_.ep.lp:end)./tmp(idx,end-options_.ep.lp-1:end-1)-1)));
end
if ~increase_periods && delta < options_.dynatol.x
if length(tmp)>1 && ~isempty(indx)
delta = max(delta,max(max(abs(tmp(indx,end-options_.ep.lp:end)-tmp(indx,end-options_.ep.lp-1:end-1)))));
end
if ~increase_periods && delta<options_.dynatol.x
break
else
options_.periods = options_.periods + options_.ep.step;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment