フィルターのクリア

How do I make a figure full screen?

232 ビュー (過去 30 日間)
jon
jon 2016 年 4 月 24 日
回答済み: sipsj11 2017 年 12 月 13 日
I create a guide and I use this function to make it full screen:
set(hObject,'units','normalized','outerpos',[0 0 1 1.2]);
but i don't get what i want, i get this:
And i want something like this:

採用された回答

Jan
Jan 2016 年 4 月 24 日
編集済み: Jan 2016 年 4 月 24 日

その他の回答 (2 件)

sipsj11
sipsj11 2017 年 12 月 13 日
There's an easier solution than using someone else's script, you can simply declare in your text. It's slightly different for older versions (prior to 2014)
Code below:
fig=gcf;
fig.Units='normalized';
fig.OuterPosition=[0 0 1 1];

Image Analyst
Image Analyst 2016 年 4 月 24 日
Change the 1.2 to 1.0. Or you can try this:
% Set up figure properties:
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0 1 1]);
% Get rid of tool bar and pulldown menus that are along top of figure.
set(gcf, 'Toolbar', 'none', 'Menu', 'none');
Or do what I do and that is to use Yair Altman's undocumented Java calls. See attached function.

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by