Array that contains a geometric series
38 ビュー (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
Roger Stafford
2016 年 12 月 19 日
A general form for a geometric series is:
[a,a*r,a*r^2,a*r^3,...]
You can generate n of these by:
s = a*r.^(0:n-1);
その他の回答 (1 件)
John D'Errico
2016 年 12 月 19 日
2.^(0:6)
3 件のコメント
John D'Errico
2016 年 12 月 19 日
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.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!