Borrar filtros
Borrar filtros

Image invisible

5 visualizaciones (últimos 30 días)
Manu MJ
Manu MJ el 18 de Jun. de 2011
How to make the image invisible and visible in GUI.

Respuesta aceptada

Paulo Silva
Paulo Silva el 18 de Jun. de 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

Más respuestas (0)

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by