非表示にしたfigureが複数ある場合において,編集対象の「現在のfigure」を非表示のまま変更したい
Show older comments
figure('visible','off');
コマンドで作成された複数個の非表示figureがある場合において,非表示のまま”現在のFigure”を変更する方法はありますか?
”現在のFigure”の指定に,figure(n)コマンドを使うとウインドウが表示されてしまうので困っています.
2 Comments
Atsushi Ueno
on 9 Oct 2021
function ans = SetTargetFigure_and_Visible_off(fig_handle)
figure(fig_handle);
set(fig_handle,'visible','off');
end
これじゃ駄目ですかね。切り替えたFigureが一瞬だけ表示されます。駄目ですよね。
Obo Hirotaka
on 9 Oct 2021
Accepted Answer
More Answers (0)
Categories
Find more on グラフィックス オブジェクトの識別 in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!