create an increasing series
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ektor
am 21 Sep. 2023
Bearbeitet: Walter Roberson
am 21 Sep. 2023
Hi all,
I want to create
5
5(1+0.2^2)=
5(1+0.2^2+0.2^4)=
5(1+0.2^2+0.2^4+0.2^6)=
5(1+0.2^2+0.2^4+0.2^6+0.2^8)=
and so one up to 25 times.
Is there a way to do that in matlab?
Thank you!
0 Kommentare
Akzeptierte Antwort
Voss
am 21 Sep. 2023
r = 0.2;
n = 25;
m = 5;
V = m*r.^(2*(0:n-1));
S = cumsum(V);
format long g
disp(S.')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!