Constructing a try-catch loop
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sushma sharma
am 21 Mai 2017
Bearbeitet: Walter Roberson
am 21 Mai 2017
Hi,
I am trying to write a try-catch loop that will only fail on more than five attempts. how can i go about that?
So far, I have: try
%command to execute
catch
command to execute if error
end
how can i make this a loop that will only fail after five attempt at maximum?
any help would be appreciated,
sushma
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Mai 2017
Bearbeitet: Walter Roberson
am 21 Mai 2017
fail_count = 0;
for fail_count = 1 : 5
try
THIS
break; %stop on first success
catch
if fail_count == 5
THAT
end
end
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
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!