MATLAB: Cell into a cell

cellhumor

I have a 1×3 cell called 'Data' where each of the cells are made up of a 2×1 cell. I want to combine 'Data' with another 1×3 cell called 'Named'. I basically want 'Data' to be cells within the cells in 'Named'. So in the command window you will have a 1×3 cell called 'Named' then by clicking on this variable you will then get the 1×3 cell originally in 'Named' then by clicking on the appropriate cell you will get the relevant 2×1 cell which was originally in 'Data'.
If this isn't clear enough i'll attempt to make an idealised example to make it clearer.

Best Answer

This sounds more like a struct?
for i=1:3
for j=1:2
TXT.(Name{i}){j,1} = rand(12);
end
end
Or use cell2struct to do this afterwards ... ??
Titus