How to create a movie with different plot components?

5 vues (au cours des 30 derniers jours)
Audun Yrke
Audun Yrke le 26 Jan 2015
Commenté : Audun Yrke le 26 Jan 2015
I am animating some mechanical parts. For each time interval several "mechanical parts" change their positions. My problem is that my program will not clear the plots from the previous time intervals, so at the end the figure becomes a mix of all time intervals.
figure(1)
set(gca,'nextplot','replacechildren');
for t=1:(2*pi/w1)+1
Calculations...
plot([A1(1) A2(1)],[A1(2) A2(2)],'r.')
plot([x1 x2],[y1 y2],'k');
plot([A1(1) x1],[A1(2) y1],'b-')
plot([A2(1) x2],[A2(2) y2],'b-')
plot([P1(1);P2(1)],[P1(2);P2(2)],'go')
hold on
F(t)=getframe;
end
%Make a movie
movie(F,1)
I have used exactly the same method earlier and suceeded, but I have never had more than one plot for each time interval. How can I replace the previous image?
Best regards,
Audun Yrke

Réponse acceptée

Youssef  Khmou
Youssef Khmou le 26 Jan 2015
To clear the previous sample, try :
for t=1:(2*pi/w1)+1
%Calculations...
plot([A1(1) A2(1)],[A1(2) A2(2)],'r.');
hold on;
plot([x1 x2],[y1 y2],'k');
plot([A1(1) x1],[A1(2) y1],'b-')
plot([A2(1) x2],[A2(2) y2],'b-')
plot([P1(1);P2(1)],[P1(2);P2(2)],'go')
hold off;
F(t)=getframe;
end
Adjust the axes for stable sequence.
  1 commentaire
Audun Yrke
Audun Yrke le 26 Jan 2015
Thank you very much for your answer! There was one combination of hold on/off I had ignored...

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