Multiply x sequentially with items of a vector
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Dear MATLAB community,
I would like to construct an index, which should start with 100. I have computed a vector, which then determines the change in the index in each time period. For example, for 4 time periods:[1.1,1.2,1.3,1.4] Basically, the operation should compute and produce the following vector:
- 100*1.1
- (100*1.1)*1.2
- ((100*1.1)*1.2)*1.3
- (((100*1.1)*1.2)*1.3)*1.4
Thank you very much in advance! I appreciate any help, as I am still a beginner with MATLAB.
0 Commenti
Risposta accettata
Più risposte (1)
Walter Roberson
il 7 Ago 2015
Modificato: Stephen23
il 7 Ago 2015
cumprod([100, 1.1, 1.2, 1.3, 1.4])
0 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!