How to stop a for loop by press a button APP designer ?

38 Ansichten (letzte 30 Tage)
Jenifer NG
Jenifer NG am 16 Aug. 2022
Kommentiert: Jenifer NG am 17 Aug. 2022
Hi Everyone,
Do you know how to stop a for loop by press a button in APP designer ?
I do a research but don't find any solution yet
Thanks !

Akzeptierte Antwort

CAM
CAM am 16 Aug. 2022
Make the Stop button a toggle button.
Within the FOR loop, check the status of the Stop button. If it is toggled-on, then break out of the FOR loop.
After the FOR loop, toggle-off the Stop button.
[Please note that this is untested code]
for a = 1:loopCount
% << your main code >>
if app.tglStop.Value == 1
break
end
end % a
app.tglStop.Value = 0;
Hope this helps.

Weitere Antworten (0)

Kategorien

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

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by