How to break a for loop but then continue with the rest of code
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi I have this situation and I have done coding but my code don't break when all nodes get data.
Can you guide me.
댓글 수: 0
채택된 답변
Jos (10584)
2016년 2월 18일
Use break
for k=1:100,
if rand < 0.2
disp('Break out of for loop')
break
end
end
disp(k) % almost never reached 100
추가 답변 (1개)
Fangjun Jiang
2016년 2월 18일
편집: Fangjun Jiang
2016년 2월 18일
Use continue or break to control the for-loop.
help continue
help break
참고 항목
카테고리
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!