Effacer les filtres
Effacer les filtres

3D plotting of Excel Data

1 vue (au cours des 30 derniers jours)
Nathan Churcher
Nathan Churcher le 29 Oct 2019
Réponse apportée : darova le 29 Oct 2019
I have this centroid- data based on time of the movement of an object and would want to plot in 3D space the centroid locations to show the movement of the object in 3D space. I would like to plot it out 3 points at a time(i.e at any time, there should be (n-1), n and (n+1)) but I'm not sure how to go about this, any help? I have attached the .xlsx file for reference.

Réponse acceptée

darova
darova le 29 Oct 2019
Use plot and pause to animate the movement
plot3(x,y,z)
hold on
for i = 2:length(x)-1
ii = i-1:i+1;
h = plot3(x(ii),y(ii),z(ii),'.r'); % draw some particles
pause(0.5) % wait a minute
delete(h) % delete
end
hold off

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Object Identification dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by