for loop
이전 댓글 표시
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
채택된 답변
추가 답변 (3개)
Steven
2011년 11월 16일
value = 1:10;
skip = [4 6 9];
value(skip) = [];
for i = value
...
end
Daniel Shub
2011년 11월 16일
for ii=1:10
if ismember(ii, 1:2:5)
continue;
end
fprintf('%d\n', ii);
end
카테고리
도움말 센터 및 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!