number of figure windows that are currently open?

20 次查看(过去 30 天)
In a script can I get the number of figure windows that are currently open?
Why?: as I re-run the script over and over to generate another figure, I'd like to position each new figure incrementally to the right

采纳的回答

Bora Eryilmaz
Bora Eryilmaz 2022-12-8
编辑:Bora Eryilmaz 2022-12-8
f1 = figure;
f2 = figure;
F = findobj('Type', 'figure')
F =
2×1 Figure array: Figure (2) Figure (1)
n = numel(F)
n = 2

更多回答(1 个)

Daniel Vieira
Daniel Vieira 2022-12-8
I do something like this:
for k=1:K
% my code here
figure;
% my plot here
fig=gcf; % get figure handle
fig.Position=[50+10*k 50+10*k fig.Position(3:4)]; % puts 1st image in pixel [50 50], second in [60 60], etc
end

类别

Help CenterFile Exchange 中查找有关 Graphics Object Programming 的更多信息

标签

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by