catch UIAxes in figure
4 ビュー (過去 30 日間)
古いコメントを表示
how catch UIAxes in new figure?
figure;
0 件のコメント
採用された回答
Angelo Yeo
2023 年 10 月 11 日
fig = uifigure;
ax = uiaxes(fig);
1 件のコメント
Adam Danz
2023 年 10 月 11 日
The key is to specify the figure handle as @Angelo Yeo demonstrated above. You can use figure or uifigure but in uifigures the HandleVisibility property is off by default so if you call axes() or uiaxes() without specifying the figure handle, the axes will go into a new figure.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Develop uifigure-Based Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!