plotting two different graphs
Mostra commenti meno recenti
im using plot to graph one curve but now i need to plot a second curve on a different graph so how can i open 2 graphs from one script
Risposta accettata
Più risposte (1)
Image Analyst
il 13 Mag 2012
Try subplot(). This will let you have two plots on the same figure so you can see them both at the same time and don't have to keep switching between figures.
subplot(1, 2, 1);
plot(1:30);
subplot(1, 2, 2);
plot(200:247);
Categorie
Scopri di più su Line Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!