Effacer les filtres
Effacer les filtres

Helping to Create Line Animations

2 vues (au cours des 30 derniers jours)
Tien Tran
Tien Tran le 3 Jan 2016
I want to create a line animation, but it seems not act in my Matlab software as attached image. Can you help me explaining this problem? How can I get this function?
.

Réponse acceptée

Walter Roberson
Walter Roberson le 3 Jan 2016
animatedline was introduced in R2014b, which was after your release.
curve = line(nan,nan);
for i = 1 : length(x)
set(curve, 'xdata', x(1:i), 'ydata', y(1:i));
drawnow();
end
  1 commentaire
Walter Roberson
Walter Roberson le 8 Jan 2016
You should start a new question for this.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Animation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by