stop for loop if a thing happens
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mohammad
el 8 de Sept. de 2011
Comentada: feras almasri
el 4 de Abr. de 2015
for example:
for i=1:10
a=i+1
if a>5
exit from loop % *which command do this*
end
end
0 comentarios
Respuesta aceptada
Jan
el 8 de Sept. de 2011
Or BREAK.
You can find a list of commands concerning FOR loops in the "See also" line of help for. This line is created exactly for such questions.
0 comentarios
Más respuestas (2)
Wesley Ooms
el 8 de Sept. de 2011
i looked it up for you. the command is 'break' :)
2 comentarios
Oleg Komarov
el 8 de Sept. de 2011
@Weasley: please edit your answers in place of creating new ones.
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!