How To... Plot Multiple Data Sets on the Same plot
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

2 commentaires
Réponses (1)
Jan
le 16 Sep 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-*');
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!