Filter löschen
Filter löschen

Saving an animation into an avi file

3 Ansichten (letzte 30 Tage)
Rildo
Rildo am 20 Okt. 2014
Beantwortet: Image Analyst am 21 Okt. 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

Antworten (1)

Image Analyst
Image Analyst am 21 Okt. 2014
See my well commented demo, attached.

Kategorien

Mehr zu Animation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by