Reputation: 73
I have created a lot of MATLAB figures, using the figure
command. All these figures appear as icons in the taskbar (see below). I would like to hide these icons in the taskbar, but the figures themselves should still be visible on the screen.
Any solution for this?
Upvotes: 1
Views: 465
Reputation: 10440
When you create the figures, set the WindowStyle
property to docked
:
for k = 1:10
figure('WindowStyle','docked');
end
This way all the figures will open in the main Matlab window, in different tabs, so you won't see them in the taskbar. See below the peek-view from the taskbar at the bottom that previews only 2 windows. Next, you can choose the 'float' option in the Figures window:
and then you can arrange all the figures as you wish:
Upvotes: 2