Create vector with variable spacing
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Plus de réponses (1)
David Hill
le 20 Oct 2022
Use a cell array.
PRI = [0.0624 0.054 0.0636];
for k=1:3
P{k}=0:PRI(k):360;
end
P
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!