Saveas (visible, off)

44 views (last 30 days)
Aadil
Aadil on 3 Apr 2012
Answered: Igor Varfolomeev on 13 Nov 2015
Hi I'm working on a script that creates a load of plots then saves them as individual fig files as well as all into a pdf file.
The problem I'm having is that although I've set visible to off, the plots still come up after going through the saveas function, so now I have to resort to using 'close all' after each graph. But even close all cause the graphs to flash up momentarily.
This is very annoying as I want the whole process invisible and not interfering with my desktop space.
Please help
Thanks
This is my script:
%%Throttle
i = i + 1;
figure(i)
set(gcf,'Visible','off','PaperOrientation',
'landscape','PaperPositionMode','manual','PaperPosition',[0.1, 0.1,30, 20]')
set(gca,'fontsize',10);
% Set Parameters to Plot
if exist('Accelerator_Pedal_Position'); plot(Elapsed_Time, Accelerator_Pedal_Position,'LineWidth', 1 ); else plot (0,NaN,'w'); end;
h=legend('Accelerator\_Pedal\_Position');
set(h,'fontsize',6);
% Set title for plot
title(['220HP'; 'Automated Manual';raw(3);'Throttle']);
%Set Labels for X and Y Axes'
xlabel ('Elapsed Time (s)');
ylabel ('Accelerator\_Pedal\_Positionn (%)')
xlim ([-inf inf])
grid on;
box on;
fpath = 'D:\Users\km933\Documents\MATLAB\Field Test v1';
saveas(figure(i), fullfile(fpath, 'Throttle'), 'fig');
print -dpsc -append myfile
close all

Accepted Answer

Robert Cumming
Robert Cumming on 4 Apr 2012
When you create your figure set the position to be off your screen, i.e.
'position', [10000 10000 800 600]
That way it wont be displayed on your desktop.
  4 Comments
Aadil
Aadil on 4 Apr 2012
Great, this works nice one mate cheers
Aadil
Aadil on 11 Apr 2012
right, after checking my figure files I've discovered that this method causes the figures to be invisible ie. when you click to open the file nothing opens as its positioned off the screen

Sign in to comment.

More Answers (4)

Titus Edelhofer
Titus Edelhofer on 4 Apr 2012
Hi Aadil,
the problem I guess is the call figure(i) in saveas. Just use
save(i, fullfile(...));
One minor issue: do you need the figure to be numbered? Otherwise I would usually suggest something like
% create invisible figure
hFigure = figure('Visible','off','PaperOrientation',
'landscape','PaperPositionMode','manual','PaperPosition',[0.1, 0.1,30, 20]');
% do your plotting etc.
% and save:
save(hFigure, fullfile(...));
% and close it:
close(hFigure);
Titus
  4 Comments
Jan
Jan on 4 Apr 2012
@Aadil: Can you confirm, that the SAVE command makes the figure visible?
Either use the debugger by setting a breakpoint in the code and step through the program line by line, or use "disp('before save'); pause(1);" and "disp('after save')".
Aadil
Aadil on 4 Apr 2012
I'm not sure,I had a look at the code and don't really understand it

Sign in to comment.


Jan
Jan on 4 Apr 2012
Some functions to copy the contents of a figure requires an enabled visibility. I assume it is print in your case, but I've seen this behaviour for getframe only yet.
I assume there is no workaround and getting annoyed is not good solution. I suggest a coffee break.
  2 Comments
Aadil
Aadil on 4 Apr 2012
no I've tried it with just the print function and the graphs stay invisible, its when I want them to be saved as fig files that causes them to flash up again
I'm assuming this flashing up of graphs is also slowing the process down?
Robert Cumming
Robert Cumming on 4 Apr 2012
yes the rendering will be making it slower.

Sign in to comment.


Sebastian
Sebastian on 3 Jan 2013
I've also created a routine like Aadil in which many plots were created, saved, reloaded, updated and again saved... all automagically.
I created it in Matlab 2010a (Win XP) and it worked great, as the figures were all the time invisible (no need to plot outside the screen), and it worked fast...
Now that I have R2011b and Win 7, the routine became slower and it shows every figure before it is saved.
Any way to change it back ? is it Win 7 or the newer Matlab Version ?
Best regards,

Igor Varfolomeev
Igor Varfolomeev on 13 Nov 2015
If anyone is still looking for an answer, take a look at this post - I've just tried to collect all known workarounds in a single post.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!