different set of subplot with loop
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Saurabh Srivastava
il 8 Gen 2016
Risposto: Mohammad Abouali
il 8 Gen 2016
Hi all, I want to plot data for two loop. first loop will define the different figure while other loop will define the subplot. for example I have i=1:3 and j=1:6 the I need three figure and each figure must have 6 subplot. The plot should be done in loop.
0 Commenti
Risposta accettata
Mohammad Abouali
il 8 Gen 2016
for i=1:3
figure
for j=1:6
%calculation
subplot(2,3,j);
%plot commands
end
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Subplots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!