for loop
14 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
More Answers (3)
Steven
on 16 Nov 2011
one way could be to specify manually the values:
for i = [1 2 3 5 7 8 10]
...
end
Daniel Shub
on 16 Nov 2011
for ii=1:10
if ismember(ii, 1:2:5)
continue;
end
fprintf('%d\n', ii);
end
0 Comments
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!