How To... Plot Multiple Data Sets on the Same plot
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti

2 Commenti
Risposte (1)
Jan
il 16 Set 2017
Or:
plot(1:10, rand(1, 10), 'r-+');
hold('on');
plot(1:10, rand(1, 10), 'g-d');
plot(1:10, rand(1, 10), 'b-*');
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots 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!