How to stop popping up of plot figures unnecessarily in Matlab app designer?
조회 수: 21 (최근 30일)
이전 댓글 표시
My GUI desgned on MATLAB app designer is working perfectly. However, at one stage it is popping out a separate figure which should not appear.
How I can stop that plot figure from popping out?
댓글 수: 0
채택된 답변
추가 답변 (1개)
Kevin Holly
2023년 3월 9일
If it is due to a plot function, you need to define the uiaxes for the plot. such as:
plot(app.UIAxes,x,y)
댓글 수: 6
Kevin Holly
2023년 3월 9일
There is no need to draw the plot if you are not using it. Unless you want to save the figure without displaying it. Could speed up your program by commenting it out.
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!