MATLAB: How to crearte a cell array of cell arrays

cell array of cell arrays

Hello,
I would like to create a cell array, the members of which are again cell arrays. I am using a code snippet located at the following link, to create the first level of cell arrays:
Any help would be appreciated.
TIA Vinod

Best Answer

T = {cell(5,2), cell(1,11};
{'Hello', 'Vinod'}, num2cell(rand(30,30))};
Related Question