필터 지우기
필터 지우기

Only the most recent graph showing up?

조회 수: 59 (최근 30일)
briana chen
briana chen 2020년 12월 7일
댓글: briana chen 2020년 12월 7일
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
Ive J
Ive J 2020년 12월 7일
figure;
plot(t, c)
figure;
plot(t, s)
or use subplot.
briana chen
briana chen 2020년 12월 7일
Thank you so much Ive Ive!

댓글을 달려면 로그인하십시오.

채택된 답변

Harry Laing
Harry Laing 2020년 12월 7일
편집: Harry Laing 2020년 12월 7일
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
briana chen
briana chen 2020년 12월 7일
Wow, thank you so much for this detailed answer! It helped so much and has solved my issue :) Have a great day!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Specifying Target for Graphics Output에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by