substitute for do while loop

3 visualizaciones (últimos 30 días)
Terry McGinnis
Terry McGinnis el 23 de Jun. de 2015
Comentada: Terry McGinnis el 23 de Jun. de 2015
I need to implement and exit controlled loop in matlab.Is there a efficient replacement to the 'do...while' that can be in matlab?Or do we need to use some other logic?
  1 comentario
Azzi Abdelmalek
Azzi Abdelmalek el 23 de Jun. de 2015
Why do you want to replace the while loop?

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 23 de Jun. de 2015
doLoop = true;
while doLoop
disp('in loop');
if rand < 0.01 % <- Your control to break the loop
doLoop = false;
end
end
  1 comentario
Terry McGinnis
Terry McGinnis el 23 de Jun. de 2015
thanks.I implemented something similar.

Iniciar sesión para comentar.

Más respuestas (0)

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