Image invisible
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to make the image invisible and visible in GUI.
0 Kommentare
Akzeptierte Antwort
Paulo Silva
am 18 Jun. 2011
Hide:
set(gca,'visible','off') %hide the current axes
set(get(gca,'children'),'visible','off') %hide the current axes contents
Show:
set(gca,'visible','on') %show the current axes
set(get(gca,'children'),'visible','on') %show the current axes contents
If needed replace gca by the handle of the axes you wish to work with
0 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!