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

1 visualización (últimos 30 días)
P Lepage
P Lepage el 6 de Nov. de 2020
Editada: P Lepage el 9 de Nov. de 2020
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.

Respuesta aceptada

Abdolkarim Mohammadi
Abdolkarim Mohammadi el 6 de Nov. de 2020
Editada: Abdolkarim Mohammadi el 6 de Nov. de 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 comentario
P Lepage
P Lepage el 9 de Nov. de 2020
Editada: P Lepage el 9 de Nov. de 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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by