非表示にしたfigureが複数ある場合において,編集対象の「現在のfigure」を非表示のまま変更したい
Mostrar comentarios más antiguos
figure('visible','off');
コマンドで作成された複数個の非表示figureがある場合において,非表示のまま”現在のFigure”を変更する方法はありますか?
”現在のFigure”の指定に,figure(n)コマンドを使うとウインドウが表示されてしまうので困っています.
2 comentarios
Atsushi Ueno
el 9 de Oct. de 2021
function ans = SetTargetFigure_and_Visible_off(fig_handle)
figure(fig_handle);
set(fig_handle,'visible','off');
end
これじゃ駄目ですかね。切り替えたFigureが一瞬だけ表示されます。駄目ですよね。
Obo Hirotaka
el 9 de Oct. de 2021
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre グラフィックス オブジェクトの識別 en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!