非表示にしたfigureが複数ある場合において,編集対象の「現在のfigure」を非表示のまま変更したい
Afficher commentaires plus anciens
figure('visible','off');
コマンドで作成された複数個の非表示figureがある場合において,非表示のまま”現在のFigure”を変更する方法はありますか?
”現在のFigure”の指定に,figure(n)コマンドを使うとウインドウが表示されてしまうので困っています.
2 commentaires
Atsushi Ueno
le 9 Oct 2021
function ans = SetTargetFigure_and_Visible_off(fig_handle)
figure(fig_handle);
set(fig_handle,'visible','off');
end
これじゃ駄目ですかね。切り替えたFigureが一瞬だけ表示されます。駄目ですよね。
Obo Hirotaka
le 9 Oct 2021
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur グラフィックス オブジェクトの識別 dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!