How to delete specified curved in a figure using a handle?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Walter Roberson
el 19 de Feb. de 2013
t = 0:0.1:2*pi;
y = sin(t);
h = plot(t,y);
then
delete(h)
0 comentarios
Más respuestas (1)
Azzi Abdelmalek
el 19 de Feb. de 2013
Editada: Azzi Abdelmalek
el 19 de Feb. de 2013
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 comentarios
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!