Is it possible to plot on fullscreen with MATLAB?
53 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mr M.
am 25 Feb. 2018
Beantwortet: Mahmoud Alzoubi
am 12 Nov. 2019
I would like to use the entire screen, without window frame, menu, etc. Just a fullscreen plot area. Is it possible?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (3)
Mahmoud Alzoubi
am 12 Nov. 2019
add the following line after figure()
set(gcf, 'WindowState', 'maximized');
0 Kommentare
Walter Roberson
am 25 Feb. 2018
2 Kommentare
Walter Roberson
am 26 Feb. 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
am 26 Feb. 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
Siehe auch
Kategorien
Mehr zu Graphics Object Identification finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!