How to handle (e.g. close) windows generated by the "view" function?
古いコメントを表示
Hi,
I want to handle the figures that are generated by the view function, like changing the size or just closing them.
One small example for classification trees, but I have the same problem with other tools:
load ionosphere
tc = ClassificationTree.fit(X,Y);
view(tc,'mode','graph')
This is what I already tried, but nothing affects the view window.
set(gcf,'position',[100 1100 1700 700]);
close(gcf)
close all
Thank you very much for your ideas!
回答 (3 件)
Sean de Wolski
2017 年 1 月 25 日
delete(allchild(groot))
Joshua Mckone
2018 年 12 月 17 日
1 投票
close all force;
Qi Wei
2017 年 1 月 25 日
0 投票
Hi Antje, Have you found a solution for your problem? Thanks! Qi
カテゴリ
ヘルプ センター および File Exchange で Classification Trees についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!