Stop a while loop using a GUI

1 visualización (últimos 30 días)
Raldi
Raldi el 24 de En. de 2013
Respondida: Birkan GOCERLER el 21 de Sept. de 2014
Hey everyone,
I need to stop a while loop using a 'Stop' button in a GUI and i was wondering what are the best ways of doing that.

Respuesta aceptada

Jan
Jan el 24 de En. de 2013
Editada: Jan el 24 de En. de 2013
A short example:
h = uicontrol('Style', 'PuchButton', 'String', 'Stop', ...
'Callback', 'delete(gcbo)');
while ishandle(h)
disp(datestr(now, 0));
pause(0.25);
end
Check out the famous 41 GUI example.
  2 comentarios
Raldi
Raldi el 24 de En. de 2013
Ill go with this answer as i already have created a pushbutton. Will there be a problem if the pushbutton is created in another function and i just use findobj or something similar?
Jan
Jan el 24 de En. de 2013
On one hand: no, you can create the button anywhere and use any method to obtain the handle. On the other hand: simply try it - when you do not have problems, it works.

Iniciar sesión para comentar.

Más respuestas (2)

Birkan GOCERLER
Birkan GOCERLER el 21 de Sept. de 2014

Sean de Wolski
Sean de Wolski el 24 de En. de 2013
Have the while-loop check if a togglebutton uicontrol has been pushed (i.e. what is it's value). If it has the loop will end
while(get(handles.togglebutton,'value')); %handles.togglebutton is handle to button
do_stuff;
drawnow; %force event queue update
end

Categorías

Más información sobre Programming en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by