concatenate values from matrix and cell array

조회 수: 2 (최근 30일)
Elysi Cochin
Elysi Cochin 2019년 4월 3일
댓글: madhan ravi 2019년 4월 3일
i have a matrix and a cell array
mtric =
1 2 3
4 5 6
7 8 9
cell_array =
aa bb cc
dd ee ff
gg hh ii
i wanted to combine both these as
new_out =
1 - aa 2 - bb 3 - cc
4 - dd 5 - ee 6 - ff
7 - gg 8 - hh 9 - ii

채택된 답변

Stephen23
Stephen23 2019년 4월 3일
>> M = [1,2,3;4,5,6;7,8,9];
>> C = {'aa','bb','cc';'dd','ee','ff';'gg','hh','ii'};
>> F = @(n,c) sprintf('%d - %s',n,c{:});
>> Z = arrayfun(F,M,C,'uni',0)
Z =
'1 - aa' '2 - bb' '3 - cc'
'4 - dd' '5 - ee' '6 - ff'
'7 - gg' '8 - hh' '9 - ii'

추가 답변 (1개)

madhan ravi
madhan ravi 2019년 4월 3일
strcat(""+mtric,{'-'}, string(cell_array)) % string array
cellstr(strcat(""+mtric,{'-'}, string(cell_array))) % cell array
  댓글 수: 4
Elysi Cochin
Elysi Cochin 2019년 4월 3일
편집: Elysi Cochin 2019년 4월 3일
i'm using 2016a
string is also not recognized
says undefined function or variable
madhan ravi
madhan ravi 2019년 4월 3일
strcat(sprintfc('%d',mtric),{'-'},cell_array)

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

카테고리

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

태그

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by