Is it possible to plot on fullscreen with MATLAB?

73 visualizzazioni (ultimi 30 giorni)
I would like to use the entire screen, without window frame, menu, etc. Just a fullscreen plot area. Is it possible?

Risposta accettata

Steven Lord
Steven Lord il 26 Apr 2018
It is possible to do this as of release R2018a using the WindowState property of a figure object.

Più risposte (3)

Mahmoud Alzoubi
Mahmoud Alzoubi il 12 Nov 2019
add the following line after figure()
set(gcf, 'WindowState', 'maximized');

Walter Roberson
Walter Roberson il 25 Feb 2018
  2 Commenti
Mr M.
Mr M. il 26 Feb 2018
No, I mean, I don't want any window! I need a fullscreen picture on the entire screen!
Walter Roberson
Walter Roberson il 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.

Accedi per commentare.


Jan
Jan il 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
  1 Commento
Mr M.
Mr M. il 26 Apr 2018
I am under OSX, but I think it is possible somehow, for example the Psychophys Toolbox can do it

Accedi per commentare.

Categorie

Scopri di più su Graphics Object Identification in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by