compunding investment every month

2 ビュー (過去 30 日間)
jean claude
jean claude 2016 年 4 月 3 日
編集済み: grim fin 2022 年 3 月 9 日
hi, i have vector X=[ 0.35; 0.05; 0.06 ;0.07] i want to have y=[100*1.35 ; 100*1.35*1.05 ; 100*1.35*1.05*1.06 ; 100*1.35*1.05*1.06*1.07]
its like compunding my investment 100 $ every month any help?

採用された回答

Kuifeng
Kuifeng 2016 年 4 月 3 日
X=[ 0.35; 0.05; 0.06 ;0.07];
x1 = 1+X;
base = 100;
y = base.*x1(1);
for i = 2:length(X)
y(i) = y(i-1)*x1(i);
end
  2 件のコメント
jean claude
jean claude 2016 年 4 月 3 日
thank you for high speed answer !
Kuifeng
Kuifeng 2016 年 4 月 3 日
you are welcome, just happened to be reading your questions.

サインインしてコメントする。

その他の回答 (1 件)

grim fin
grim fin 2022 年 2 月 15 日
編集済み: grim fin 2022 年 3 月 9 日
Thanks a lot

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by