Is it possible to plot on fullscreen with MATLAB?
Mostrar comentarios más antiguos
I would like to use the entire screen, without window frame, menu, etc. Just a fullscreen plot area. Is it possible?
Respuesta aceptada
Más respuestas (3)
Mahmoud Alzoubi
el 12 de Nov. de 2019
3 votos
add the following line after figure()
set(gcf, 'WindowState', 'maximized');
Walter Roberson
el 25 de Feb. de 2018
0 votos
2 comentarios
Mr M.
el 26 de Feb. de 2018
Walter Roberson
el 26 de Feb. de 2018
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
el 26 de Feb. de 2018
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 comentario
Mr M.
el 26 de Abr. de 2018
Categorías
Más información sobre Environment and Settings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!