button unresponsive while running loop
22 views (last 30 days)
Show older comments
I have a button that toggles the state of a rogue variable which will terminate a while loop. However, if the while loop is running, the button is unresponsive, and I cannot break the loop without using "ctrl + C".
0 Comments
Answers (1)
Gayatri
on 6 Nov 2024 at 10:41
Hi Rohit,
You can use 'drawnow' or one of its functional equivalents, such as 'pause(0)' inside of the while loop when it is running and button is unresponsive.
Adding this allows the system to register that the variable has updated, which subsequently breaks the loop.
Please refer the following documentation for drawnow function: https://www.mathworks.com/help/matlab/ref/drawnow.html
0 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!