필터 지우기
필터 지우기

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

조회 수: 10 (최근 30일)
QiQin Zhan
QiQin Zhan 2013년 2월 19일
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?

채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 19일
t = 00.12*pi;
y = sin(t);
h = plot(t,y);
then
delete(h)

추가 답변 (1개)

Azzi Abdelmalek
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')

카테고리

Help CenterFile Exchange에서 Graphics Object Identification에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by