Effacer les filtres
Effacer les filtres

How to delete specified curved in a figure using a handle?

10 vues (au cours des 30 derniers jours)
QiQin Zhan
QiQin Zhan le 19 Fév 2013
How to delete specified curved in a figure using a handle?
t = 00.12*pi;
y = sin(t);
plot(t,y)
Then how to delete the 'sin(t)'curve?

Réponse acceptée

Walter Roberson
Walter Roberson le 19 Fév 2013
t = 00.12*pi;
y = sin(t);
h = plot(t,y);
then
delete(h)

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 19 Fév 2013
Modifié(e) : Azzi Abdelmalek le 19 Fév 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')

Catégories

En savoir plus sur Graphics Object Identification dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by