for loop
14 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
その他の回答 (3 件)
Steven
2011 年 11 月 16 日
one way could be to specify manually the values:
for i = [1 2 3 5 7 8 10]
...
end
Daniel Shub
2011 年 11 月 16 日
for ii=1:10
if ismember(ii, 1:2:5)
continue;
end
fprintf('%d\n', ii);
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!