• 大小: 259KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-09
  • 语言: Matlab
  • 标签: matlab  动画  

资源简介

MATLAB生成gif的小程序,解决MATLAB不能生成gif图片的缺点

资源截图

代码片段和文件信息

%% How to make an animated GIF
% This example animates the vibration of a membrane captures a series of
% screen shots and saves the animation as a GIF image file.
%%
% <<../DancingPeaks.gif>>
%%
% The resulted animated GIF was embedded in this HTML page using the Image
% cell markup (see 
). 
%%
% Here‘s the M code.
Z = peaks; 
surf(Z)
axis tight
set(gca‘nextplot‘‘replacechildren‘‘visible‘‘off‘)
f = getframe;
[immap] = rgb2ind(f.cdata256‘nodither‘);
im(11120) = 0;
for k = 1:20 
  surf(cos(2*pi*k/20)*ZZ)
  f = getframe;
  im(::1k) = rgb2ind(f.cdatamap‘nodither‘);
end
imwrite(immap‘DancingPeaks.gif‘‘DelayTime‘0‘LoopCount‘inf) %g443800
%%
% For more details about GIF settings |DelayTime| and |LoopCount| for desired
% effect see the 


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      260720  2008-10-30 12:34  DancingPeaks.gif
     文件       19142  2008-10-30 12:34  html\AnimatedGif_01.png
     文件        3316  2008-10-30 12:34  html\AnimatedGif.png
     文件        4282  2008-10-30 12:34  html\AnimatedGif.html
     目录           0  2008-10-30 12:34  html\
     文件        1021  2008-10-30 12:34  AnimatedGif.m

评论

共有 条评论