フィルターのクリア

How to use a figure as 'if condition'?!

4 ビュー (過去 30 日間)
sajjad hosseinifard
sajjad hosseinifard 2018 年 7 月 16 日
コメント済み: Fangjun Jiang 2018 年 7 月 16 日
I's using an m file to plot some data, online. I want to make an 'if condition', when I close the figure that is plotting my data manually!! Shortly, How could I Initialize a loop by closing a specific figure?!(as I close the figure the loop being started)

採用された回答

Fangjun Jiang
Fangjun Jiang 2018 年 7 月 16 日
Would this work?
f1=figure;
...
status=close(f1);
You can then check the "status" using "if"
  2 件のコメント
sajjad hosseinifard
sajjad hosseinifard 2018 年 7 月 16 日
thank you because of your answer..yes it works..but I want to start the loop when I close the figure by clicking on the close button!!
Fangjun Jiang
Fangjun Jiang 2018 年 7 月 16 日
a simple example
f1=figure;
set(f1,'DeleteFcn','for k=1:10; disp(k);end')
then close the figure manually

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by