複数のグラフを一度に消去する方法はありますか?
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
fumio hakamada
le 14 Mai 2020
Commenté : fumio hakamada
le 16 Mai 2020
グラフつきのプログラムを開発しています。
複数のグラフが生成されますが、一度にクリアする方法を教えてください。
例えば、解析の結果10個のグラフが生成されるとします。生成後、不具合があればプログラムを修正、実行しますが、再び10個のグラフが作成されるので、20個になってしまいます。
clear all のような操作がグラフでもできるといいんですが。
0 commentaires
Réponse acceptée
Hiroki Okawa
le 14 Mai 2020
グラフというのはFigureのことでしょうか。その場合はclose関数が有用です。
close all
waitbar関数を使っているなど、上のスクリプトで消えないものがある場合は
close all force
を用いてみてください。
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur ダイアログ ボックス dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!