several plot - subplot for-loop
Afficher commentaires plus anciens
I have several plot in a for loop.
I want to see them on one side but I can't figure out what values I have to put in subplot () in a for loop
Files=dir('*.csv')
for k=1:length(Files)
filename=Files(k).name
filename='dataset_001.csv'
figure
yyaxis left
plot(p,ODsatpercent,'bo--');
yyaxis right
plot(p,Tclean.CTDTMP,'ro--');
legend('%Od','t');
end
Réponses (2)
Jan
le 10 Mai 2021
Maybe:
...
subplot(1, length(Files), k);
yyaxis left
plot(p,ODsatpercent,'bo--');
yyaxis right
plot(p,Tclean.CTDTMP,'ro--');
legend('%Od','t');
2 commentaires
Jan
le 10 Mai 2021
After your comment: Then:
subplot(12, 13, k);
GIOVANNA GUADAGNIN
le 10 Mai 2021
GIOVANNA GUADAGNIN
le 10 Mai 2021
0 votes
Catégories
En savoir plus sur Subplots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!