substitute for do while loop

5 Ansichten (letzte 30 Tage)
Terry McGinnis
Terry McGinnis am 23 Jun. 2015
Kommentiert: Terry McGinnis am 23 Jun. 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 Kommentar
Azzi Abdelmalek
Azzi Abdelmalek am 23 Jun. 2015
Why do you want to replace the while loop?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by