gca behaves different in 2014b
1 回表示 (過去 30 日間)
古いコメントを表示
Christian Schultes
2014 年 10 月 12 日
コメント済み: Christian Schultes
2014 年 10 月 12 日
Hello, Let assume there is already a figure open (like a GUI). Before 2014b with gca the handle number returned. Now with gca a new figure will open.
How could I get the current handle of a figure back?
In my special case, I try to get access to a certain axes of an existing figure. Any help avialable?
Thanks!
3 件のコメント
採用された回答
その他の回答 (1 件)
David Barry
2014 年 10 月 12 日
Christian,
This seems to work fine. Are you sure you definitely have an axes in your figure? gca will only open a new figure with an axes in if you call it and one doesn't already exist.
Try the code below and see if returns 1
f = figure;
a = axes('Parent', f);
g = gca;
a == g
参考
カテゴリ
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!