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

1 visualizzazione (ultimi 30 giorni)
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.

Risposta accettata

Abdolkarim Mohammadi
Abdolkarim Mohammadi il 6 Nov 2020
Modificato: Abdolkarim Mohammadi il 6 Nov 2020
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 Commento
P Lepage
P Lepage il 9 Nov 2020
Modificato: P Lepage il 9 Nov 2020
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.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by