MATLAB中单摆怎么保存成gif格式的

%制作动画%挂摆横梁plot([-0.3;0.3],[0;0],'color','y','linestyle','-',...'linewidth',10);g=0.98... %制作动画
%挂摆横梁
plot([-0.3;0.3],[0;0],'color','y','linestyle','-',...
'linewidth',10);
g=0.98;
%重力加速度,可以调节摆的摆速
l=1;theta0=pi/4;x0=l*sin(theta0);y0=(-1)*l*cos(theta0);
axis([-0.75,0.75,-1.25,0]);
axis('on');
%不显示坐标轴
%创建摆锤
head=line(x0,y0,'color','r','linestyle','.',...
'erasemode','xor','markersize',40);
%创建摆杆
body=line([0;x0],[0;y0],'color','b','linestyle','-',...
'erasemode','xor');
%摆的运动
t=0;
dt=0.01;
while 1
t=t+dt;
theta=theta0*cos(sqrt(g/l)*t);
x=l*sin(theta);
y=(-1)*l*cos(theta);
set(head,'xdata',x,'ydata',y);
set(body,'xdata',[0;x],'ydata',[0;y]);
drawnow
end
展开
 我来答
兔子和小强
推荐于2016-11-24 · TA获得超过6945个赞
知道大有可为答主
回答量:3332
采纳率:74%
帮助的人:1375万
展开全部

参考自:MATLAB CENTRAL - How can I create animated GIF images in MATLAB ?

将那个循环的代码改成:

outfile = 'x.gif';
for t = 0:.1:2*pi
    theta=theta0*cos(sqrt(g/l)*t);    
    x=l*sin(theta);    
    y=(-1)*l*cos(theta);    
    set(head,'xdata',x,'ydata',y);    
    set(body,'xdata',[0;x],'ydata',[0;y]);    
    % drawnow
    
    frame = getframe(1);
    im = frame2im(frame);
    [imind,cm] = rgb2ind(im, 256);
    if t == 0
        imwrite(imind,cm,outfile,'gif','DelayTime',0,'loopcount',inf);
    else
        imwrite(imind,cm,outfile,'gif','DelayTime',0,'writemode','append');
    end
end
百度网友3c63e6c
2014-10-16 · TA获得超过2847个赞
知道大有可为答主
回答量:3829
采纳率:68%
帮助的人:2744万
展开全部
gif动画是用多幅图片制作的,MATLAB无法保存成gif吧。。。
追问
需要添加程序代码,但是不会用,求大神解决
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式