필터 지우기
필터 지우기

Image invisible

조회 수: 2 (최근 30일)
Manu MJ
Manu MJ 2011년 6월 18일
How to make the image invisible and visible in GUI.

채택된 답변

Paulo Silva
Paulo Silva 2011년 6월 18일
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개)

제품

Community Treasure Hunt

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

Start Hunting!

Translated by