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!