how can I make the line animated for x2, y2 ?

조회 수: 2 (최근 30일)
yudhi
yudhi 2017년 9월 21일
댓글: yudhi 2017년 9월 21일
x=[0 100 100 0 0]; y=[0 0 100 100 0]; x1=[50 50 50 50 50 60 70 80 80 80 80 80]; y1=[0 10 20 30 40 40 40 40 50 60 70 80]; plot(x,y,x1,y1)
  댓글 수: 1
Jan
Jan 2017년 9월 21일
"Make it animated" is not an clear description of what you want. Do you want one line appear after the other, should the it be displayed as growing polygon, or should a line disappear when the new line is drawn? Please do not let the readers guess, what you want.

댓글을 달려면 로그인하십시오.

채택된 답변

KSSV
KSSV 2017년 9월 21일
x=[0 100 100 0 0]; y=[0 0 100 100 0];
x1=[50 50 50 50 50 60 70 80 80 80 80 80];
y1=[0 10 20 30 40 40 40 40 50 60 70 80];
plot(x,y);
hold on
for i = 1:length(x1)
plot(x1(1:i),y1(1:i),'r')
pause(0.2)
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Animation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by