The following is my code for Euler's Method in which I am trying to find the amount of time it takes to pay off a loan. However I do not know how to plot this.
y=750000;
h=.01;
t=0;
while (y>0)
y=y+(h*(.05*y-48000));
t=t+h;
end
disp(t)

 採用された回答

Jan
Jan 2017 年 10 月 1 日

1 投票

How to plot what? The values of t and y for all steps?
y = 750000;
h = 0.01;
t = 0;
c = 0;
yv = [];
tv = [];
while y > 0
y = y + (h * (0.05 * y - 48000));
t = t + h;
c = c + 1;
yv(c) = y;
tv(c) = t;
end
disp(t)
plot(tv, yv);

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeOperating on Diagonal Matrices についてさらに検索

質問済み:

2017 年 10 月 1 日

回答済み:

Jan
2017 年 10 月 1 日

Community Treasure Hunt

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

Start Hunting!

Translated by