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!