| Date: Thu, 27 Aug 2015 16:15:14 +0200
fix call raising figures
Diffstat:
M matlab/file_scanner_mcmc_starter.m | 3 +++
M matlab/generate_plots.m | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
--- |
| t@@ -90,6 +90,9 @@ while 1
%CompareWalks2(Ss, save_file)
generate_plots(Ss, save_file, graphics_formats, show_figures);
+ % close all figures
+ close all;
+
% delete or archive the file so it is not processed again
%delete(infile)
%movefile(infile, archivefolder); |
| t@@ -205,7 +205,7 @@ if strcmp(show_figures, 'on')
end
for i=1:4
- figure_save_multiformat(figure(fh(i)), ...
+ figure_save_multiformat(fh(i), ...
strcat(save_file, '-', num2str(i)), ...
formats);
end |