stop running script after close figure

10 views (last 30 days)
Hi, How can I stop running script after I'm closing figure? (When I'm closing a figure it is reopened (using loop)). *Not mean to 'ctrl+C'. Thanks!

Accepted Answer

Stephen23
Stephen23 on 21 Jun 2016
Hint: get the figure handle, and check it with ishghandle. This is easy to do in a loop.

More Answers (1)

KSSV
KSSV on 21 Jun 2016
You can type 'break' where you want to stop the code in the file. The code executes till the line before break and then exits.
  1 Comment
Eden Eden
Eden Eden on 21 Jun 2016
Edited: Eden Eden on 21 Jun 2016
thanks, I meant only when I'm closing the figure window the script will stop. There is any way of doing it?

Sign in to comment.

Categories

Find more on Loops and Conditional Statements 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!