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!
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 Exchange에서 Graphics 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