Hi,
I am trying to animate a simple 3D trajectory
I have written a code based off of an example from Youtube. I wish my trajectory could look like the one as shown in the example.
However, no matter how I adjust the pause parameter, I could never get it to work.
box on
plot3([0 1 0 0]', [1 0 0 1]', [0 0 1 0]')
axis([0 1 0 1 0 1]);
view(135, 13)
curve_1 = animatedline('LineWidth',1)
curve_2 = animatedline('LineWidth',1)
z = linspace(1,300,300)
hold on
for i = 1:length(z)
addpoints(curve_1, x2(:,1), x2(:,2), x2(:,3));
head_1 = scatter3(x2(:,1), x2(:,2), x2(:,3), 'filled', 'Marker');
drawnow
pause(0.5);
end
Can someone please take a look? I have included my data points.

 채택된 답변

madhan ravi
madhan ravi 2018년 11월 4일

0 개 추천

load vector.mat
box on
plot3([0 1 0 0]', [1 0 0 1]', [0 0 1 0]')
axis([0 1 0 1 0 1]);
view(135, 13)
curve_1 = animatedline('LineWidth',1)
curve_2 = animatedline('LineWidth',1)
z = linspace(1,300,300)
hold on
for i = 1:length(z)
addpoints(curve_1, x2(i,1), x2(i,2), x2(i,3));
head_1 = scatter3(x2(i,1), x2(i,2), x2(i,3));
drawnow
pause(0.5);
end

댓글 수: 3

madhan ravi
madhan ravi 2018년 11월 4일
you were close but not close enough
Bolin
Bolin 2018년 11월 4일
Thank you. What was I thinking!
madhan ravi
madhan ravi 2018년 11월 4일
Anytime :)

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Animation에 대해 자세히 알아보기

질문:

2018년 11월 4일

댓글:

2018년 11월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by