how to stop in Gui

I am running a subroutine of controlling the movement of a stage from one place to another. I like to install a 'stop' button in GUI so I can stop the movement anytime I want.
Is there any way I can do it without breaking the subroutine, namely writing the steps of the subrountine into the program itself?

Respuestas (2)

Walter Roberson
Walter Roberson el 5 de Oct. de 2011

0 votos

You would have to set a value somewhere that the subroutine periodically checked and exited if the value so indicated.

2 comentarios

Feng
Feng el 5 de Oct. de 2011
Thanks for asnser my question.
I guess that is my chanllenge. I am not sure how a stand alone subroutine, or a function I should say, can interact with a GUI action.
Thanks,
Sean de Wolski
Sean de Wolski el 5 de Oct. de 2011
if (stop_button.value) %if button pushed
break;
end

Iniciar sesión para comentar.

Sean de Wolski
Sean de Wolski el 5 de Oct. de 2011

0 votos

Sounds like you want to use a timer:
doc timer

2 comentarios

Walter Roberson
Walter Roberson el 5 de Oct. de 2011
Not sure how a timer would assist when it is a matter of a stop *button* ?
Sean de Wolski
Sean de Wolski el 5 de Oct. de 2011
Stop button stops the timer.

Iniciar sesión para comentar.

Categorías

Más información sobre Just for fun en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 5 de Oct. de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by