Only the most recent graph showing up?

184 views (last 30 days)
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
Ive J on 7 Dec 2020
figure;
plot(t, c)
figure;
plot(t, s)
or use subplot.

Sign in to comment.

Accepted Answer

Harry Laing
Harry Laing on 7 Dec 2020
Edited: Harry Laing on 7 Dec 2020
When you call the 'plot' function, without any other arguments, MATLAB will automatically plot the most recent request on the current figure, overwriting previously plotted data. If you wish the plotted data to appear on the same figure, I suggest using the 'hold' command (it means matlab won't wipe the figure each time you want to plot on it):
% Call a figure to be created
figure;
plot(t,c) % Plot first graph
hold on % prevents matlab overwriting current figure data
plot(t,s) % plot second figure
hold off % turns the hold off
Don't forget to turn the hold off, as it can (sometimes) have unexpected results later on with your code.
Alternatively, if you want the two plots on seperate figures, you should either call a new figure to be created each time, or use 'subplot' to plot multiple graphs on one figure:
% Example plot on two seperate figures
figure;
plot(t,c)
figure;
plot(t,s)
hold off
% Example plot for two seperate graphs on one figure
figure;
subplot (2,1,1)
plot(t,c)
subplot(2,1,2)
plot(t,s)
I reccomend you read the documentation on subplot as to how the layout works.
  1 Comment
briana chen
briana chen on 7 Dec 2020
Wow, thank you so much for this detailed answer! It helped so much and has solved my issue :) Have a great day!

Sign in to comment.

More Answers (0)

Categories

Find more on Specifying Target for Graphics Output 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!