MATLAB: Creat a cell array so that each cell contain 3D matrix of 640x480x3

arrayscell arraymatrix

hi there.
i have 3D matrix of 640x480x3 .i want to creat a cell array of 1×44 and so that each cell contain a 3D matrix of 640x480x3?
regards
mehrozech

Best Answer

A - your 3D matrix
out_cells = arrayfun(@(ii)A,1:44,'un',0)