Cell
Create Cell and Access Cell
% Create Cell
a = cell(2, 4)
b = {'one', 'two'; 1, 2}
d = num2cell(1:4)

% Access Elements
b(1, 1) % cell
b{1, 1} % array
c = cell2mat(b(1, 1))% convert cell to ordinary array
			
Insertion and Deletion
% Create Cell
a = num2cell(magic(3))
% Insert Row
a(4, :) = cell(1, 3)
% Delete Element
a{2, 2} = []
% Delete Row
a(4, :) = []
			
Reference