I need help plotting Eulers Method
显示 更早的评论
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)
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Operating on Diagonal Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!