Naming figure with a loop
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to name my figures with 2 pieces of information, one that is constant for all images and one that arises from a loop. For example, I want the code to generate 4 plots with the following titles:
Doubling Time Tobramycin
Doubling Time Amikacin
Doubling Time Clindamycin
Doubling Time Tetracycline
I am making the 4 plots using a loop and I have the antibiotic names saved as Drug.{1}, 2 , 3. etc. How should I write it so that part of the title stays constant and the second part changes each time.
Thanks.
0 commentaires
Réponse acceptée
KL
le 2 Nov 2017
for k = 1:numel(D)
f(k) = figure(k)
h(k) = plot(...)
title(['Doubling Time ' D{k}])
end
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Graphics Performance 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!