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

2 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

Jos (10584)
Jos (10584) el 18 de Feb. de 2016
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 comentario
Arsal15
Arsal15 el 18 de Feb. de 2016
Editada: Arsal15 el 18 de Feb. de 2016
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.

Iniciar sesión para comentar.

Más respuestas (1)

Fangjun Jiang
Fangjun Jiang el 18 de Feb. de 2016
Editada: Fangjun Jiang el 18 de Feb. de 2016
Use continue or break to control the for-loop.
help continue
help break

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by