Mostra commenti meno recenti
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
Risposta accettata
Più risposte (3)
Steven
il 16 Nov 2011
value = 1:10;
skip = [4 6 9];
value(skip) = [];
for i = value
...
end
Daniel Shub
il 16 Nov 2011
for ii=1:10
if ismember(ii, 1:2:5)
continue;
end
fprintf('%d\n', ii);
end
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!