Vectorize sum of discount rates

Hi,
I want to vectorize the calculation of series like this: [R^0;R^0+R^1;R^0+R^1+R^2;...etc.
Im quite sure this should be easy, but i cant figure it out. Any help is greatly appreciated! :-)

 Akzeptierte Antwort

Weitere Antworten (3)

Matt J
Matt J am 6 Dez. 2012
Bearbeitet: Matt J am 6 Dez. 2012

0 Stimmen

out=1/(1-R).*(1-R.^(1:n));
Jan
Jan am 6 Dez. 2012

0 Stimmen

R = 23;
n = 100;
x = repmat(R, 1, n);
x(1) = 1;
Result = cumsum(cumprod(x));
Sargondjani
Sargondjani am 6 Dez. 2012

0 Stimmen

thank you all for you answers... all did what i wanted, but the one by Matt Fig is the most simple

Community Treasure Hunt

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

Start Hunting!

Translated by