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?
채택된 답변
추가 답변 (3개)
Mahmoud Alzoubi
2019년 11월 12일
3 개 추천
add the following line after figure()
set(gcf, 'WindowState', 'maximized');
Walter Roberson
2018년 2월 25일
0 개 추천
댓글 수: 2
Mr M.
2018년 2월 26일
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
카테고리
도움말 센터 및 File Exchange에서 Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!