MATLAB: Move a row from a cell to another cell

cell arrays

I had a cell array Q like this
Q=cell(5,1);
Q{1,:}=[1 2 3 4;11 22 33 4;11 2 33 4];
Q{2,:}=[1 11 11 2;22 2 32 33];
Q{3,:}=[12 21 1 2;13 32 23 2;11 23 22 22;1 11 111 42;13 23 2 23];
…. and so on. now i want to move a row from Q{1,:}(1,:) into another cell like in Q{2,:} or Q{3,:} or Q{4,:} or Q{5,:} except Q{1,:} how can i do this ? thanks

Best Answer

Your data:
>> Q = cell(3,1);
>> Q{1} = [1,2,3,4;11,22,33,4;11,2,33,4];
>> Q{2} = [1,11,11,2;22,2,32,33];
>> Q{3} = [12,21,1,2;13,32,23,2;11,23,22,22;1,11,111,42;13,23,2,23];
MATLAB does not have a "move" operation, so you have to do this in two steps:
>> Q{2} = vertcat(Q{2},Q{1}(1,:)); % copy row from Q{1} to Q{2}
>> Q{1}(1,:) = []; % delete row from Q{1}
and checking:
>> size(Q{1})
ans =
2 4
>> size(Q{2})
ans =
3 4