How to delete specified curved in a figure using a handle?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Più risposte (1)
Azzi Abdelmalek
il 19 Feb 2013
Modificato: Azzi Abdelmalek
il 19 Feb 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 Commenti
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!