Is it possible to plot on fullscreen with MATLAB?
73 次查看(过去 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!