Plotting points on a comet plot
Mostra commenti meno recenti
Hi,
I am looking to plot the points that the head of the comet traverses through in the comet plot so that I can get a sense for the density of the points on the comet plot. Can someone please suggest how I can modify comet3 to realize it.
Thanks
Risposte (2)
According to the doc:
"comet3(X,Y,Z) displays an animated comet plot of the curve through the points [X(i),Y(i),Z(i)]."
Is that what you were looking for?
So,
t = -pi:pi/500:pi;
comet3(sin(5*t),cos(3*t),t)
figure
plot3(sin(5*t),cos(3*t),t,'*')
1 Commento
Ram
il 12 Set 2012
Sean de Wolski
il 12 Set 2012
Modificato: Sean de Wolski
il 12 Set 2012
0 voti
comet works by setting the line's 'EraseMode' to 'none' so that the line draws, but does not erase even though the xdata and ydata are no longer stored.
To store the x and y data you need to make a copy of comet that does this.
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!