How to use plot3 and a for loop to gradually plot the 3D graph of values?

22 次查看(过去 30 天)
Hello there!
I have 3 arrays describing a 3D motion XYZ. I would like to plot them gradually to generate a "simulation" of the 3D motion of the point in space.
I have tried to use a for loop with plot3 but it just gives me a blank figure.
Any suggestions?
Thank you in advance.
for i=1:20
plot3(X(i),Y(i),Z(i))
end

采纳的回答

KSSV
KSSV 2020-5-13
编辑:KSSV 2020-5-13
figure
hold on
for i=1:20
plot3(X(i),Y(i),Z(i),'.r')
end
You have to use a marker when you are plotting a single point.
Another way.
for i = 1:20
plot3(X(1:i),Y(1:i),Z(1:i),'r')
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by