Animate 2D coordinate plot

5 次查看(过去 30 天)
I have a list of x,y coordinates for a particle. I would like to animate the plot so it looks like the particle is drawing out its path. I have attached what the final plot looks like in excel. Can someone help me turn this into an animated Matlab figure? Thanks!

采纳的回答

Star Strider
Star Strider 2021-7-8
Try this —
D1 = readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/678468/Clcoords.xls');
figure
hold on
for k = 1:size(D1,1)-1
plot(D1(k:k+1,1), D1(k:k+1,2), '.-b')
axis([-150 150 -150 150])
pause(0.01)
drawnow
end
hold off
.
  4 个评论
Star Strider
Star Strider 2021-7-8
As always, my pleasure!
.

请先登录,再进行评论。

更多回答(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