Why the loop does not stopped?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hasung Hwang
el 16 de Abr. de 2019
Comentada: Ben Cunningham
el 17 de Abr. de 2019
Hello,
Using designer, I make same program as below.
When click 'Run Start', current time and loop running count will be described at 'Run Count' and 'Run Time'.
When click 'Run Stop', running loop will be stopped.
So I programmed as below.
------------------------------------
% Button pushed function: btnStart
function btnStartPushed(app, event)
app.btnStart.Enable = 'off';
app.btnStop.Enable = 'on';
runCount = 0;
runTime = datestr(now, 'HH:MM:SS');
global runStatus
runStatus = 0;
gcf
set(gcf, 'WindowButtonUpFcn', @btnStopButtonPushed)
while ~runStatus
drawnow
app.efRunCount.Value = num2str(runCount);
app.efRunTime.Value = runTime;
runCount = runCount + 1;
runTime = datestr(now, 'HH:MM:SS');
end
app.btnStart.Enable = 'on';
app.btnStop.Enable = 'off';
end
% Button pushed function: btnStop
function btnStopButtonPushed(app, event)
global runStatus
runStatus = 1;
end
---------------------------------------
I got this kind of method from this site.
Why I use 'drawnow' order in this program?
When I remove 'drawnow' because I have own windows, the loop is not stopped even through 'Run Stop' is clicked.
How can I handle this problem?
0 comentarios
Respuesta aceptada
Ben Cunningham
el 16 de Abr. de 2019
See the 'interruptible' property of callbacks in app designer - e.g. here under the heading 'Callback execution control'.
The answer to your question is :
"The interruption occurs at the next point where MATLAB processes the queue, such as when there is a drawnow, figure, uifigure, getframe, waitfor, or pause command."
In other words the drawnow command is providing an oppurtunity for your stop button to interrupt the execution of the while loop to set the global variable, then when the while loop resumes ~runStatus will evaluate false.
Without drawnow, the stop button will wait until the previous callback is finished - which never occurs since your while loop will spin forever.
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interaction Control en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!