MATLAB: Problem with cells and lines

cells

Hi! in an array we have this command:
a is an array
% code
a(1:5:end)=[]
end
ho could i do this for cells?

Best Answer

a={'1' '2' '3' '4' '5' '6'}
a(1:3:6)=[]