clear one plot in multiple (hold) figure
古いコメントを表示
I have a single figure/plot that contains multiple plots commands (not subplots - just multiple data sets). I need to be able to add the data to the current figure, see how it looks, and clear it if doesnt fit my visual criteria.
Any suggestions?
clf clears the entire figure. I just want to clear the last data set I added to the figure.
採用された回答
その他の回答 (3 件)
Matt Tearle
2011 年 2 月 16 日
In addition to the cyclist's answer, you can also do
delete(h2)
to actually delete the line, rather than just hide it. Also, if you didn't store the handles on plotting ( h1 = plot(...) ) you can find them after the fact using findobj
h = findobj('type','line')
finds a vector of handles to all line objects. You could then delete(h(1))
3 件のコメント
Jiro Doke
2011 年 2 月 27 日
Another option (if you don't have the handle), is to click on the line that you want to delete and type:
delete(gco)
Wencai Lee
2011 年 4 月 6 日
Hi Jiro,
Do you know how to undo one step after using the delete(gco)?
Thanks!
Eric T
2016 年 3 月 18 日
This seems a nice, principled answer. Don't like making them invisible because that takes up memory, def prefer to delete them!
Sai
2017 年 1 月 18 日
3 投票
Go to 'View' and click on the 'Plot Browser' to enable it. There you can check/uncheck the plots in the figure
Ashton
2011 年 2 月 16 日
1 投票
1 件のコメント
Matt Tearle
2011 年 2 月 16 日
You're welcome. And now the obligatory message: to help others who might have the same question, it would be great if you could vote for and/or accept answers that you think should be given prominence. Thanks. (I know there's only a couple of answers in this case, but it's good practice to let everyone know "answer X solved my problem")
カテゴリ
ヘルプ センター および File Exchange で Graphics Performance についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!