Combine 2 Cell Matrices into One

조회 수: 1 (최근 30일)
Ruger28
Ruger28 2020년 5월 6일
댓글: Star Strider 2020년 5월 6일
Hello,
Im trying to combine data from two matrices into one. An example:
A = {'A','B','C';'A','B','C'};
B = {'1','1','1';'2','2','2'};
and I want C to be:
C = {'A1','B1','C1';'A2','B2','C2'};
I feel like this is trivial, and I am definitely missing something. Any help would be greatly appreciated.

채택된 답변

Star Strider
Star Strider 2020년 5월 6일
Try this:
A = {'A','B','C';'A','B','C'};
B = {'1','1','1';'2','2','2'};
C = cellfun(@(x,y)[x,y], A, B, 'Uni',0)
producing:
C =
2×3 cell array
{'A1'} {'B1'} {'C1'}
{'A2'} {'B2'} {'C2'}
.
  댓글 수: 2
Ruger28
Ruger28 2020년 5월 6일
Thank you very much! I was definitely going the wrong direction. I apprecaite the help!
Star Strider
Star Strider 2020년 5월 6일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by