Is there a way to call Continue in a loop less script ?

조회 수: 1 (최근 30일)
P Lepage
P Lepage 2020년 11월 6일
편집: P Lepage 2020년 11월 9일
Is there any way to call a continue statement in a script that does not contain a loop to continue the caller context loop ?
Since script are just chunks of code that will be runned in the caller context and can access it's variable, it would make sence that the continue statement can affect the caller context's loop.
When a continue is written outside a loop, Matlab's interpreter signals an error. That makes sence because the interpreter has no way to know that this script will be runed in a loop. What dosen't makes sence is that the error is thrown when the script is executed in a suitable context.
Any way to prevent this ?
Thank you all for your time.

채택된 답변

Abdolkarim Mohammadi
Abdolkarim Mohammadi 2020년 11월 6일
편집: Abdolkarim Mohammadi 2020년 11월 6일
Instead of calling continue directly, you can set a flag in the inner script. The outer script, which contains the loop, uses the flag to continue to the next iteration.
for
% ------------
% inner script
if
flag = 1;
else
flag = 0;
end
% ------------
if flag == 1
continue
end
end
  댓글 수: 1
P Lepage
P Lepage 2020년 11월 9일
편집: P Lepage 2020년 11월 9일
I will accept this answer since you took the time to reply. The flag strategy was what I was using writing this question. I was looking for a way to use the continue statement since it's self explanatory and simple.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by