for loop

40 次查看(过去 30 天)
Baba
Baba 2011-11-16
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

采纳的回答

Walter Roberson
Walter Roberson 2011-11-16
for i = setdiff(1:10, [4,6,9])

更多回答(3 个)

Steven
Steven 2011-11-16
one way could be to specify manually the values:
for i = [1 2 3 5 7 8 10]
...
end
  1 个评论
Baba
Baba 2011-11-16
yes, but my I indexes through alot of values, and there are only a few of them that I'd like it to skip

请先登录,再进行评论。


Steven
Steven 2011-11-16
value = 1:10;
skip = [4 6 9];
value(skip) = [];
for i = value
...
end

Daniel Shub
Daniel Shub 2011-11-16
for ii=1:10
if ismember(ii, 1:2:5)
continue;
end
fprintf('%d\n', ii);
end

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by