Filter löschen
Filter löschen

plotting moving data points

2 Ansichten (letzte 30 Tage)
mamdouh aljoud
mamdouh aljoud am 25 Jan. 2019
Beantwortet: Shuqiao Xie am 19 Feb. 2019
I'm trying to plot a skeleton model using the coordinates of the joints.
I extracted the x,y, and z coordinates and saved them in 3 matrices.
I'm trying to plot the first row of each column then have a small pause and plot the next row of each matrix.
each row of the matrices correspond to the x,y, and z coordinates of the joints and together they make a frame.
  1 Kommentar
Adam
Adam am 25 Jan. 2019
Which part of it is causing a problem.
doc plot3
should help with this.
Though you should use the syntax that returns the handle the first time you plot and then only update the 'XData' and 'YData' on future updates to concatenate the new points, otherwise it will be slow updating.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Shuqiao Xie
Shuqiao Xie am 19 Feb. 2019
data = randn(10, 3)
hold on
for ii = 1: length(data)
scatter3(data(ii,1),data(ii,2),data(ii,3))
pause(1)
end

Kategorien

Mehr zu Graphics finden Sie in Help Center und File Exchange

Produkte


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by