Only the most recent graph showing up?
Show older comments
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 Comments
Ive J
on 7 Dec 2020
figure;
plot(t, c)
figure;
plot(t, s)
or use subplot.
briana chen
on 7 Dec 2020
Accepted Answer
More Answers (0)
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!