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!