Array that contains a geometric series
Ältere Kommentare anzeigen
Hi, Is there a short way to create an array in which the elements are making a geometric series?
like for example the following array:
x=[1 2 4 8 16 32 64]
Thanks, Shir
Akzeptierte Antwort
Weitere Antworten (1)
John D'Errico
am 19 Dez. 2016
2.^(0:6)
3 Kommentare
shir shalom
am 19 Dez. 2016
John D'Errico
am 19 Dez. 2016
You could have said that the first time. But what is wrong then with this?
2.^(-1:6)
It really won't work? I guess I need to learn this new math then.
Or, for a more general form, with some other start point:
0.1*2.^(0:6)
Could I have used a loop? Of course. But why? Learn to use Matlab.
shir shalom
am 20 Dez. 2016
Kategorien
Mehr zu Programming finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!