Need to record multiple arrays within a while loop

1 次查看(过去 30 天)
Ive been stuck on this for a bit now and need help. I want to array all values of owed loan amount on a yearly basis within 20 years. I want to array the amount I would owe each year considering the loan payment increases with each years predicted salary growth(3%). Please help me be able to turn the amount owed, and salary after each loop into a saved array
clear, clc
year=0;
salary=60000;
poverty=19720;
protected=poverty*2.25;
while year<20
owed=(salary-protected)*.083;
salary=(salary*1.03);
totalowe=sum(owed);
totalowem=totalowe/12;
year=year+1;
end
disp(owed)

采纳的回答

Mathieu NOE
Mathieu NOE 2024-4-24
indexing is what you need
clear, clc
year=0;
salary=60000;
poverty=19720;
protected=poverty*2.25;
while year<20
k = year+1;
owed(k)=(salary(k)-protected)*.083;
salary(k+1)=(salary(k)*1.03);
totalowe=sum(owed);
totalowem=totalowe/12;
year=year+1;
end
plot(owed)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by