save 3D matrix as gif

版本 1.0.0.0 (1.7 KB) 作者: Geert
Function that saves a 3D matrix in a gif image file.
812.0 次下载
更新时间 2013/8/29

查看许可证

save_3D_matrix_as_gif
---------------------
Function that saves a 3D matrix in a gif image.

input:
filename = the desired name of the output file
e.g.: 'C:\Users\John\Desktop\animation.gif'
or 'animation.gif' (saves in current folder)
matrix = the 3D matrix, matrix(:,:,n) contains the n'th frame of the
desired gif animation
delaytime = optional argument to specify the delay time (in seconds)
of the gif file (default = 0.1 sec)
output:
/

example:
Im = zeros(100,100,20);
% create circles with decreasing radii
for ii=1:20
Im(:,:,ii) = phantom([1 1/ii 1/ii 0 0 0],100);
end
save_3D_matrix_as_gif('C:\Users\John\Desktop\name_of_gif_file.gif',Im,0.2)

author: Geert Van Eyndhoven
contact: vegeert[at]hotmail[dot]com

引用格式

Geert (2024). save 3D matrix as gif (https://www.mathworks.com/matlabcentral/fileexchange/43270-save-3d-matrix-as-gif), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2013a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Import, Export, and Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0