Only the most recent graph showing up?
Afficher commentaires plus anciens
I am using the web version of MATLAB and when I try to plot 2 graphs, only the most recent one shows up. For example, what I have below would only show plot(t,s). no other figure or graph shows up. Why is that? Is there any way to fix this?
Any help is much appreciated! Thank you
plot(t,c)
plot(t,s)
2 commentaires
Ive J
le 7 Déc 2020
figure;
plot(t, c)
figure;
plot(t, s)
or use subplot.
briana chen
le 7 Déc 2020
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Graphics Objects dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!