Is it possible to plot on fullscreen with MATLAB?

I would like to use the entire screen, without window frame, menu, etc. Just a fullscreen plot area. Is it possible?

 採用された回答

Steven Lord
Steven Lord 2018 年 4 月 26 日

0 投票

It is possible to do this as of release R2018a using the WindowState property of a figure object.

その他の回答 (3 件)

Mahmoud Alzoubi
Mahmoud Alzoubi 2019 年 11 月 12 日

3 投票

add the following line after figure()
set(gcf, 'WindowState', 'maximized');
Walter Roberson
Walter Roberson 2018 年 2 月 25 日

0 投票

2 件のコメント

Mr M.
Mr M. 2018 年 2 月 26 日
No, I mean, I don't want any window! I need a fullscreen picture on the entire screen!
Walter Roberson
Walter Roberson 2018 年 2 月 26 日
The user-posted links in that Question point to solutions that go full-screen. The one in the File Exchange works out to use the same Java trick as the short java solution posted in the link I pointed to.

サインインしてコメントする。

Jan
Jan 2018 年 2 月 26 日

0 投票

If you work under Windows see: https://www.mathworks.com/matlabcentral/fileexchange/31437-windowapi . There is no built-in Matlab function to do so:
FigH = figure;
WindowAPI(FigH, 'full'); % complete monitor
WindowAPI(FigH, 'work'); % complete monitor without taskbar, if there is one

1 件のコメント

Mr M.
Mr M. 2018 年 4 月 26 日
I am under OSX, but I think it is possible somehow, for example the Psychophys Toolbox can do it

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeGraphics Objects についてさらに検索

質問済み:

2018 年 2 月 25 日

回答済み:

2019 年 11 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by