Effacer les filtres
Effacer les filtres

Saving an animation into an avi file

3 vues (au cours des 30 derniers jours)
Rildo
Rildo le 20 Oct 2014
How can I save the animation that results from calling playTrajectory(10,pi/4) into an avi file... I know I have to use the movietoavi function but I'm not sure how I would do that.
function [x , y]= playTrajectory(Vo,O)
global g
g = 9.8 ; % m/s
for t = (0:0.05:1.5);
x = Vo * cos(O) * t ;
y = Vo*(sin(O)*t)-(0.5*g*(t.^2));
plot(x,y,'*')
axis([0,10.61,0,2.55]); xlabel('range') ylabel('height') pause (1) ; end
end

Réponses (1)

Image Analyst
Image Analyst le 21 Oct 2014
See my well commented demo, attached.

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