I'm doing iteration of credit card. In it, there are looping of month ,balance, and pay every month . How to plot graph with these three variable as the value changes everytime looping happen . Thanks

조회 수: 1 (최근 30일)
if true
% code
here is the code
while balance >0 %checking the balance
if balance < monthPay
balance = balance- balance; %to avoid the value from getting negative
else
balance = balance - monthPay;
interestPaid = (Interest/1000.00)*balance;
TotalCreditLeft = balance + interestPaid;
RealPaymentMonthly = monthPay - interestPaid;
balance = TotalCreditLeft;
end
month=month+1;
TotalInterest = interestPaid + interestPaid;
fprintf('After month %d ,', month) ;
fprintf('your balance is : $ %.2f\n',balance);
fprintf('Interest Paid : $ %.2f\n',interestPaid);
fprintf('Total Debt left : $ %.2f\n',TotalCreditLeft);
fprintf('Real Payment Monthly : $ %.2f\n',RealPaymentMonthly);
fprintf('\n');
end

답변 (1개)

George
George 2016년 10월 14일
Don't try and plot it everytime it changes. Store the elements in vectors and plot those at the end.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by