Is it possible to change the running index in a for cycle?
조회 수: 1 (최근 30일)
이전 댓글 표시
for i = 1:10
if i == 3
i = i+2;
end
end
댓글 수: 0
답변 (2개)
Tejas Jayashankar
2018년 7월 3일
Hi,
Check out the following answer for a similar question:
Let me know if this helps.
댓글 수: 0
Jan
2018년 7월 4일
This does not work in a for loop, but it works with while:
i = 1;
while i <= 10
disp(i)
if i == 3
i = i+2;
end
i = i + 1;
end
Alternatively:
for i = [1:3, 5:10]
disp(i)
end
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!