The graph is not displayed

1 回表示 (過去 30 日間)
Mathew Aibinu
Mathew Aibinu 2023 年 8 月 26 日
回答済み: Dyuman Joshi 2023 年 8 月 26 日
close all
clear all
x0 = 100;
r=1.02;
for j=1:1:5
x(1) = x0;
x(j+1) = r*x(j);
end
plot(j, x(j))
grid on

採用された回答

Dyuman Joshi
Dyuman Joshi 2023 年 8 月 26 日
x0 = 100;
r=1.02;
%Bring the assignment out of loop, as it is not affected by the loop
x = x0;
%Define indices to loop over
j = 1:5;
for k=j
x(k+1) = r*x(k);
end
%Plot with markers to show the data points
plot(j,x(j),'bo-')
grid on

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by