How to handle (e.g. close) windows generated by the "view" function?
Mostra commenti meno recenti
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!
Risposte (3)
Sean de Wolski
il 25 Gen 2017
delete(allchild(groot))
Joshua Mckone
il 17 Dic 2018
1 voto
close all force;
Qi Wei
il 25 Gen 2017
0 voti
Hi Antje, Have you found a solution for your problem? Thanks! Qi
Categorie
Scopri di più su Classification Trees in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!