How do I name figures in for loops.

31 vues (au cours des 30 derniers jours)
Fadi Lama
Fadi Lama le 28 Nov 2020
Commenté : Fadi Lama le 28 Nov 2020
My for loop is i=1:10 in which 10 plots wre produced at 10 different locations. I would like to name the figures as 'location i' where i is 1,2,3,...10 but without having to name each figure individually. Is there a function to do this?

Réponses (1)

Walter Roberson
Walter Roberson le 28 Nov 2020
for i = 1 : 2
fig(i) = figure('name', sprintf('location %d', i));
end
fig(1).Name
ans = 'location 1'
fig(2).Name
ans = 'location 2'
  1 commentaire
Fadi Lama
Fadi Lama le 28 Nov 2020
Thanks! worked well

Connectez-vous pour commenter.

Catégories

En savoir plus sur Graphics Object Programming dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by