How to stop popping up of plot figures unnecessarily in Matlab app designer?
古いコメントを表示
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?
採用された回答
その他の回答 (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 件のコメント
Amlan basu
2023 年 3 月 9 日
Kevin Holly
2023 年 3 月 9 日
change
plot(boundary(:,2), boundary(:,1),'r-', 'LineWidth', 1);
to
plot(app.UIAxes,boundary(:,2), boundary(:,1),'r-', 'LineWidth', 1);
Amlan basu
2023 年 3 月 9 日
Kevin Holly
2023 年 3 月 9 日
In that case, remove the line completely.
Amlan basu
2023 年 3 月 9 日
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.
カテゴリ
ヘルプ センター および File Exchange で Axis Labels についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!