For loop for this ?

1 次查看(过去 30 天)
Hannes Arnar
Hannes Arnar 2020-4-1
Vcd{1} = 125 *(1+rr{1}); %Investment in company
Vcdd{1} = Vcd{1}.*(1+rr{2});
Vcde{1} = Vcdd{1}.*(1+rr{3});
%% rr are cell are that includes returns for time periods
  2 个评论
David Hill
David Hill 2020-4-1
A better description of what you are trying to do would help. Why do you have so many cell arrays?
Hannes Arnar
Hannes Arnar 2020-4-2
Let's say I have 3 stocks, with annual asset return (rr) = 0.2 , 0.3, 0.4 and the investment in the stock are 125 dollars per each stock.
So I want to creata a loop that calculates the Investment so for the first years it would be:
year 1 : 125 * 0.2 , 125 * 0.3 , 125 * 0.4
year 2: new value * 0.2 , new value * 0.3, new value * 0.4
year 3 : new value1 * 0.2, new value1 * 0.3, new value1 * 0.4

请先登录,再进行评论。

回答(1 个)

David Hill
David Hill 2020-4-2
A simple matrix would work much better.
Vcd=125*(ones(3,10).*[1.2,1.3,1.4]').^(1:10);%this is 10 years, each column with the different rates for the year

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by