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

1 次查看(过去 30 天)
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?

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by