how to clean a panel which contains axes?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Stephani Kanga
il 11 Ott 2020
Modificato: Mario Malic
il 11 Ott 2020
I have a function that generates an array of axes but the number of axes that are generated is not constant, neither their position. So, i want every time that main function calls this function, to clean the panel before the new axes will be produced.
3 Commenti
Mario Malic
il 11 Ott 2020
Modificato: Mario Malic
il 11 Ott 2020
It should be done in the code where the figure is created (maybe prior to calling the function), or you can pass a figure handle to that function and clear it in there.
Risposta accettata
Ameer Hamza
il 11 Ott 2020
You can use findall() to find the children axes
delete(findall(p, 'type', 'axes')); % p is handle of panel
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Exploration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!