Skip to content
Snippets Groups Projects
Commit 89541eec authored by Marco Ratto's avatar Marco Ratto
Browse files

Add missing figures when filtering is applied

(cherry picked from commit 2510454b)
parent f14282db
Branches
Tags
No related merge requests found
......@@ -133,6 +133,13 @@ for j=1:size(anamendo,1)
if isempty(dir(xdir))
mkdir(xdir)
end
if ~options_.nograph,
hf=dyn_figure(options_); hist(y0,30), title([namendo,' vs. ', namexo])
dyn_saveas(hf,[xdir,'/', namendo,'_vs_', namexo],options_);
if ~options_.nodisplay
close(hf);
end
end
% if ~isempty(iy),
% si(:,js) = redform_private(x0(iy,:), y0(iy), pshape, pd, iload, pnames, namendo, namexo, xdir, options_gsa_);
% else
......@@ -237,6 +244,13 @@ for j=1:size(anamendo,1)
% if ~isempty(iy)
% si(:,js) = redform_private(x0(iy,:), y0(iy), pshape, pd, iload, pnames, namendo, namlagendo, xdir, options_gsa_);
% end
if ~options_.nograph,
hf=dyn_figure(options_); hist(y0,30), title([namendo,' vs. ', namlagendo])
dyn_saveas(hf,[xdir,'/', namendo,'_vs_', namlagendo],options_);
if ~options_.nodisplay
close(hf);
end
end
if ~isempty(iy) && ~isempty(iyc),
delete([xdir, '/*cut*.*'])
[proba, dproba] = stab_map_1(x0, iy, iyc, 'cut',0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment