Vectorization
显示 更早的评论
A= 1000; %amount borrowed
n= 12 ; % number of payments per year
for r= 0.1 : 0.01 : 0.2
fprintf ('%4.0f%' , 100*r ) ;
for k = 15 : 5 25
temp = (1 + r/n) ^(n*k) ;
P = r*A * temp / (n*(temp-1));
fprintf ( '%10.2f' , P) ;
end
end
How can I vectorized these two nested FORs ?
[Edited, Jan Simon, Code formatted]
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Chemistry 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!