How to efficiently plot functions?
Ältere Kommentare anzeigen
I have 12 curves I need to plot on a single graph. This is the current script I have where I have manually asked it to plot each curve.
plot(t,y(:,1),t,y(:,2),t,y(:,3),t,y(:,4),t,y(:,5),t,y(:,6),t,y(:,7),t,y(:,8),t,y(:,9),t,y(:,10),t,y(:,11),t,y(:,12))
Is there a way to make this more efficient without having to write out for each 12?
Akzeptierte Antwort
Weitere Antworten (1)
Peng Li
am 25 Mär. 2020
If t is a vector, you use
plot(t, y);
that will automatically plot each column of y against vector t.
1 Kommentar
Ashton Linney
am 25 Mär. 2020
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
