MATLAB code to stop the program running when it meets conditions
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Oliver Horrobin
am 24 Mär. 2021
Kommentiert: Oliver Horrobin
am 24 Mär. 2021
Hi there,
I was wondering if it is possible to completely stop the run using code.
It would look something like this
cost = ooesCircDia
want = 30;
Test = round(cost,1);
if Test == want
% Where I need to stop the code <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
elseif Test > want
cost = cost;
elseif Test < want
cost = - cost;
if cost < -want
cost = -cost;
end
end
So if Test = want the entire run stops.
Many thanks,
Ollie
0 Kommentare
Akzeptierte Antwort
DGM
am 24 Mär. 2021
If you want everything to stop, use
return;
if you're in a loop and you just want to break out of the loop,
break;
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!