Plotting a circle always around a moving point

조회 수: 5 (최근 30일)
Rudrashis  Majumder
Rudrashis Majumder 2019년 3월 4일
댓글: Rudrashis Majumder 2019년 3월 4일
I need to plot a circle whose center is a moving point. The point is moving with its path being plotted using "animatedline". However, I want to show only the current circle centering the point at a particular instant and the previous circles are to be cleared. Please help.

채택된 답변

KSSV
KSSV 2019년 3월 4일
x = linspace(0,2*pi) ;
y = cos(x) ;
R = 0.1 ;
for i = 1:length(x)
plot(x(1:i),y(1:i))
axis([0 6 -2 2])
hold on
xc = x(i)+R*cos(x) ;
yc = y(i)+sin(x) ;
plot(xc,yc,'r')
hold off
drawnow
pause(0.1)
end
Read about comet.

추가 답변 (1개)

Jos (10584)
Jos (10584) 2019년 3월 4일
Adapted from the help of animatedline:
numpoints = 10000;
x = linspace(0,4*pi,numpoints);
y = sin(x);
pc = [-.1 -.1 .2 .2] ; % position of circle
figure
h = animatedline;
hc = rectangle('Position', [x(1) y(1) 0 0]+pc,'Curvature',1, 'FaceColor','r') ; % draw circle
axis([-pi,5*pi,-1.5,1.5])
for k = 1:numpoints
addpoints(h,x(k),y(k))
set(hc,'Position', [x(k) y(k) 0 0] + pc) ; % adjust position of circle
drawnow update
end

카테고리

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