MATLAB: Saving part of a cell array

cell arrays

Is there a way to save a part of a cell array like test{1,1}, test{1,2}…etc to separate variables in a .mat file?

Best Answer

You can do it, but it's really a bad idea, you can access any part of your cell by
test{1,n}