how i have reaction against error received of matlab?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
xosro
am 14 Jul. 2015
Bearbeitet: Walter Roberson
am 18 Jul. 2015
i have a for loop with a condition on receive or not receive a error of matlab program, how i can have this condition?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 15 Jul. 2015
for variable = first : last
got_error = true;
try
do something risky here
got_error = false; %only gets here if the risky thing worked
catch ME
do something about the error; the details of it are in ME
end
if got_error
we had an error and did something with it but maybe we want to know that later
end
end
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!