Image invisible
4 ビュー (過去 30 日間)
古いコメントを表示
How to make the image invisible and visible in GUI.
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!