MATLAB app designer button

65 ビュー (過去 30 日間)
lital levy
lital levy 2022 年 8 月 29 日
編集済み: Ankit 2022 年 8 月 30 日
hi, in the app designer i created a 'start' button that starts the action of a long loops, and i want to create a 'stop' button that will immidietly stop the action of the first button and not waite until it finished the loops, is that possible?

採用された回答

Ankit
Ankit 2022 年 8 月 29 日
編集済み: Ankit 2022 年 8 月 30 日
Please find attached *.zip file where you can see one example (refer below code)
properties (Access = public)
stop_sim = false;
end
methods (Access = private)
function stopSimulation(app)
app.stop_sim = true;
msgbox('simulation stopped');
end
function startSimulation(app)
i = 0;
while i<=1000000 && app.stop_sim == false
app.display.Value = num2str(i);
pause(0);
i = i + 1;
end
end
end
function StartButtonPushed(app, event)
startSimulation(app)
end
function StopButtonPushed(app, event)
stopSimulation(app)
end
Once the user pushes the StopButtonPushed button, for which the function "stopSimulation" is a callback, then the app fetch the updated properties and the condition to app.stop_sim will be set to true and hence this allows the app to terminate the while loop before reaching 1000000 iterations.
  2 件のコメント
lital levy
lital levy 2022 年 8 月 29 日
thank you,but its a long loop and it would stop only when it get to this line in the code, i need it to stop immidiatly when i push the button
Ankit
Ankit 2022 年 8 月 29 日
above function will break the loop as soon as you click the stop button right?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by