How to use a while loop with irregular step?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
bh dhouha
am 8 Aug. 2015
Kommentiert: bh dhouha
am 8 Aug. 2015
i would like to use a "while" loop ( while i<20) but with an irregular step. For example it goes this way : i=1,2,3, 5,7,9,12,15,18....it means it starts by a 1-step then by 2 then by a 3-step.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 8 Aug. 2015
while loops do not have steps. "for" loops can have steps but also can be irregular:
for i = [1,2,3, 5,7,9,12,15,18]
5 Kommentare
Weitere Antworten (1)
David Young
am 8 Aug. 2015
Bearbeitet: David Young
am 8 Aug. 2015
You can do it with a for loop very simply:
for i = [1,2,3, 5,7,9, 12,15,18]
% < process using i >
end
By the way, some people take the view that it is unwise to use i or j as ordinary variables because of potential confusion with the imaginary unit, so it might be better to use ii or k or something.
2 Kommentare
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!