Azzera filtri
Azzera filtri

Full Screen of a Figure with No windows or toolbar, on a Second Screen

1 visualizzazione (ultimi 30 giorni)
I have a two-fold problem:
First, I'm trying to display a figure without any MatLAB window margins, or the Windows task bar. I just want the figure it self to be on the screen, and fully fills it up (the figure has same resolution as the screen). I tried the following code, but it only remove margins and toolbar within the window, and does nothing to the outside border of the window: % get the figure and axes handles hFig = gcf; hAx = gca; % set the figure to full screen set(hFig,'units','normalized','outerposition',[0 0 1 1]); % set the axes to full screen set(hAx,'Unit','normalized','Position',[0 0 1 1]); % hide the toolbar set(hFig,'menubar','none') % to hide the title set(hFig,'NumberTitle','off');
Also, I'm trying to send this figure to be on a second display. My PC screen resolution is 1600x900, and I have a second screen as 1024x768. Can I work on my main screen, but open up figures only on the second screen programmingly?

Risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps 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