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 版本兼容性
平台兼容性
Windows macOS Linux类别
标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!版本 | 已发布 | 发行说明 | |
---|---|---|---|
1.0.0.0 |