How to delete specified curved in a figure using a handle?
11 ビュー (過去 30 日間)
古いコメントを表示
How to delete specified curved in a figure using a handle?
t = 0:0.1:2*pi;
y = sin(t);
plot(t,y)
Then how to delete the 'sin(t)'curve?
0 件のコメント
採用された回答
その他の回答 (1 件)
Azzi Abdelmalek
2013 年 2 月 19 日
編集済み: Azzi Abdelmalek
2013 年 2 月 19 日
cla(gca)
% or if you have two plots in the same figure
t = 0:0.1:2*pi;
y = sin(t);
y1=cos(t);
h1=plot(t,y);
hold on;
h2=plot(t,y1,'r')
% to remove plot 1:
set(h1,'visible','off')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!