How to make a figure fit a screen on a 2nd monitor?
55 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a laptop connected to an external monitor which I exclusively use (laptop monitor is turned off) and I would like to fit a MATLAB figure to my monitor screen with:
figure('outerposition',get(0,'screensize')); % or 'monitorpositions'
but it only fits part of the screen. This external screen does not use the same resolution as the one used on the laptop screen (the external monitor's is bigger) and I can't find a method to make the figure fit the external monitor's screen. I tried things such as:
figure('units','normalized','outerposition',[0 0 1 1.2]);
without success. Any help would be greatly appreciated as I'm out of ideas.
Thank you in advance!
KK
0 个评论
回答(2 个)
Dominik Mattioli
2019-6-28
编辑:Dominik Mattioli
2019-6-28
I've found that setting the outerPosition property can be awkward, especially with a taskbar in the mix.
% Get pixel position of monitors.
fh = figure('units', 'pixels');
MP = get(0, 'MonitorPositions');
N = size(MP, 1);
% Might want to set an initial position this to some reasonable location
% in the event of the window being "Restored Down".
newPosition = MP(1,:)
% dFromLeftRight = 0.125*MP(N, 3);
% dFromTopBottom = 0.125*MP(N, 4);
% newPosition = [MP(N,1)+dFromLeftRight,...
% MP(N,2)+dFromTopBottom,...
% MP(N,3)-(dFromLeftRight*2),...
% MP(N,4)-(dFromTopBottom*2)];
% Set position of fh to be within a secondary monitor, if possible.
if size(MP, 1) == 1
% Single monitor -- do nothing.
else
% Multiple monitors - shift to the Nth monitor.
newPosition(1) = newPosition(1) + MP(N,1);
end
fh.set('Position', newPosition, 'units', 'normalized');
fh.WindowState = 'maximized'; % Maximize with respect to current monitor.
The newPosition variable just makes sure the figure is first in your desired monitor before you maximize the window. Ideally, you could get the position of your MATLAB editor window and simply index N to be anything but that window so that your figure maximizes in a different one. Haven't figured that out yet.
Not sure if/how this works on non-Windows computers.
1 个评论
Rik
2019-6-28
On releases without the WindowState option, you can use this function instead to maximize your figure.
ANKUR KUMAR
2017-12-2
You are so close to your answer. You a step ahead from your answer.
figure('units','normalized','outerposition',[0 0 1 1]);
Last value should be less than 1. You have entered 1.2 You are setting units as normalized. This means that you are changing the monitor dimension in between 0 and 1. 0 is minimum and 1 is maximum.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!