Clear Filters
Clear Filters

Minimizing MATLAB windows while running?

15 views (last 30 days)
Steven
Steven on 27 Dec 2013
Commented: DGM about 6 hours ago
In my code, series of images are being processed and at each stage I have to show different figures in several windows, but as you know while running each window comes up and prevents you from doing your other things with your PC while running.
Is it possible to ask MATLAB to minimize all the windows (while running), so that the user can do his other things meanwhile?
Thanks so much.
Steven

Accepted Answer

Image Analyst
Image Analyst on 27 Dec 2013
  2 Comments
Steven
Steven on 27 Dec 2013
Great! Thanks! I see that it has recently been updated!
Thanks!
DGM
DGM 12 minutes ago
I don't know why that reference answer got deleted, but it's still archived:
The issue here is that the creation of new figure windows will typically steal focus from other applications, depending on window manager settings. Minimizing windows afterward does nothing to solve the problem.
This is the original answer --->
A change was made in MATLAB R2013b that causes new figure windows to appear in the foreground. There are three workarounds to achieve the desired effect:
1. Make plots invisible as they are plotted, and return them to visible once all plots are complete.
There are two ways to make the plots invisible:
a) After each "figure" statement, execute:
set(gcf, 'visible', 'off');
b) Set the default figure visible option to 'off' once in the beginning:
set(0, 'DefaultFigureVisible', 'off');
Once all the plots are complete, return the property to 'on':
set(0, 'DefaultFigureVisible', 'on');
At the end of the script, make all the plots visible. Suppose there are n figures with numbers 1 through n. Execute:
set(1:n, 'visible', 'on');
2. Dock all new figures with
set(0, 'DefaultFigureWindowStyle', 'docked');
Return this property to normal at the end of the script with
set(0, 'DefaultFigureWindowStyle', 'normal');
3. Generate the n empty figures at the beginning of the script:
for i = 1:n
figure(i);
end
Then, when plotting, instead of "figure(i)", use
set(0, 'CurrentFigure', i);
If it is important to periodically check the outputs of the plots while the script is running, options 2 or 3 may be more useful than 1.

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing Toolbox 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!