From: Adrian on
If you have created a GUI using GUIDE, then in GUIDE, right click in the GUI you have created, select the 'GUI Optons...' button, click in the 'Resize behavior' dropdown box, then select 'Proportional' from the options. This activates the maximize button in the top right corner of the GUI and allows you to maximize the GUI during runtime.

AG
From: ImageAnalyst on
On Apr 18, 4:13 pm, "Adrian " <em...(a)not.provided> wrote:
> If you have created a GUI using GUIDE, then in GUIDE, right click in the GUI you have created, select the 'GUI Optons...' button, click in the 'Resize behavior' dropdown box, then select 'Proportional' from the options. This activates the maximize button in the top right corner of the GUI and allows you to maximize the GUI during runtime.
>
> AG

----------------------------------------------
You can also ask the Mathworks to send you "maxfig" like they did for
me. It's an undocumented function that will allow you to TRULY
maximize the figure, as opposed to merely resizing the window to match
the screensize like you'd do with
set(gcf, 'Position', get(0,'Screensize')); % Enlarge figure to full
screen.