Figure that pop up when requested.
1 回表示 (過去 30 日間)
古いコメントを表示
Pretty much a figure that pop up like a warning dialog when needed. For example if I press a button and the figure is already open somewhere, the figure should pop up again.
0 件のコメント
採用された回答
Jan
2015 年 8 月 22 日
The command figure(FigureHandle) moves the figure to the top, if FigureHandle is an existing figure.
3 件のコメント
Walter Roberson
2015 年 8 月 22 日
You might want to check whether the handle is still a figure by using ishandle() -- or better yet if you are using a new enough version, isgraphics()
その他の回答 (1 件)
Image Analyst
2015 年 8 月 22 日
How about
uiwait(warndlg(yourMessage));
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!