move a row from a cell to another cell

조회 수: 11 (최근 30일)
MUKESH KUMAR
MUKESH KUMAR 2018년 2월 7일
편집: Stephen23 2018년 2월 7일
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

채택된 답변

Stephen23
Stephen23 2018년 2월 7일
편집: Stephen23 2018년 2월 7일
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

추가 답변 (1개)

ES
ES 2018년 2월 7일
>> Q{1,:}(1,:)
ans =
1 2 3 4
>> Q{2,:}(1,:) = Q{1,:}(1,:)% Do you simply mean this?
Q =
[3x4 double]
[2x4 double]
[5x4 double]
[]
[]
>> Q{2,:}(1,:)
ans =
1 2 3 4
  댓글 수: 1
MUKESH KUMAR
MUKESH KUMAR 2018년 2월 7일
No, I want to move Q{1,:}(1,:) to Q{2,:} cell after that size of Q{2,:} will be [3*4 double] and size of Q{1,:} will be [2*4 double]

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by