Create vector with variable spacing
14 ビュー (過去 30 日間)
古いコメントを表示
I am looking to create an array with variable spacing. I am trying to go from 0 to 360, with the spacing .0624, 0.054, 0.0636.
So the result would be: 0, 0.0624, .1164, .18, .2424, .2964...continuing to rotate adding through those 3 values up to 360.
PRI = [0.0624 0.054 0.0636]; %Deg per PRI
Bearings = 0:PRI:360;
0 件のコメント
採用された回答
その他の回答 (1 件)
David Hill
2022 年 10 月 20 日
Use a cell array.
PRI = [0.0624 0.054 0.0636];
for k=1:3
P{k}=0:PRI(k):360;
end
P
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!