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?

回答(2 个)

Walter Roberson
Walter Roberson 2011-10-5

0 个投票

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

2 个评论

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,
if (stop_button.value) %if button pushed
break;
end

请先登录,再进行评论。

Sounds like you want to use a timer:
doc timer

2 个评论

Not sure how a timer would assist when it is a matter of a stop *button* ?
Stop button stops the timer.

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Just for fun 的更多信息

标签

提问:

2011-10-5

Community Treasure Hunt

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

Start Hunting!

Translated by