Is it possible to plot on fullscreen with MATLAB?
53 ビュー (過去 30 日間)
古いコメントを表示
I would like to use the entire screen, without window frame, menu, etc. Just a fullscreen plot area. Is it possible?
0 件のコメント
採用された回答
その他の回答 (3 件)
Mahmoud Alzoubi
2019 年 11 月 12 日
add the following line after figure()
set(gcf, 'WindowState', 'maximized');
0 件のコメント
Walter Roberson
2018 年 2 月 25 日
2 件のコメント
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
2018 年 2 月 26 日
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
参考
カテゴリ
Help Center および File Exchange で Graphics Object Identification についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!