plotting 2 graphs on the same axes
Afficher commentaires plus anciens
I have to plot an x-y equation and also a data set of x,y coordinates on the same axes, but i cant figure out how to have them on the same graph. Help!
Réponse acceptée
Plus de réponses (1)
KSSV
le 21 Oct 2020
Read about hold on.
plot(rand(1,10))
hold on
plot(rand(1,10))
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!