How to break a for loop but then continue with the rest of code

조회 수: 2 (최근 30일)
Arsal15
Arsal15 2016년 2월 18일
댓글: Arsal15 2016년 2월 18일
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.

채택된 답변

Jos (10584)
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
Arsal15
Arsal15 2016년 2월 18일
편집: Arsal15 2016년 2월 18일
Do you have time to have a look of my code.?
Because I have tried same but I m using breakpoints but not skipping it.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2016년 2월 18일
편집: Fangjun Jiang 2016년 2월 18일
Use continue or break to control the for-loop.
help continue
help break

카테고리

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