for loop
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
in for loop, what is the best way to skip some values of the index variable? for i=1:10;
do something;
end
but skip i=4,6,9
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (3)
Steven
am 16 Nov. 2011
one way could be to specify manually the values:
for i = [1 2 3 5 7 8 10]
...
end
Steven
am 16 Nov. 2011
value = 1:10;
skip = [4 6 9];
value(skip) = [];
for i = value
...
end
0 Kommentare
Daniel Shub
am 16 Nov. 2011
for ii=1:10
if ismember(ii, 1:2:5)
continue;
end
fprintf('%d\n', ii);
end
0 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!