number of figure windows that are currently open?
11 ビュー (過去 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
0 件のコメント
採用された回答
Bora Eryilmaz
2022 年 12 月 8 日
編集済み: Bora Eryilmaz
2022 年 12 月 8 日
f1 = figure;
f2 = figure;
F = findobj('Type', 'figure')
n = numel(F)
0 件のコメント
その他の回答 (1 件)
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!