Why is my plot plotting blank?

22 Ansichten (letzte 30 Tage)
Shuqing Qi
Shuqing Qi am 2 Feb. 2021
Kommentiert: Timo Dietz am 3 Feb. 2021
Why I keep getting blank for my graph? I figured out that if I change plot(i,P_t(i+1)) to plot(i,P_t(i+1),'.');hold on, it will work. But only I want is a smooth line printed.

Antworten (1)

Timo Dietz
Timo Dietz am 2 Feb. 2021
Each loop you are plotting one point, only. So you either have to "hold on" the figure to prevent erasing all data before the next point to plot (this would give you some kind of scatter plot) or you have to plot the array at the end of the function.
So to get a line the last row in the function should look like
plot([1:Year+1], P_t)
You got the point?
  3 Kommentare
Shuqing Qi
Shuqing Qi am 2 Feb. 2021
Thank you so much! I got it!
Timo Dietz
Timo Dietz am 3 Feb. 2021
Glad that I could help you. Please accept the answer to close the topic.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by