How can I convert matrix to cell array of strings?

조회 수: 1 (최근 30일)
Ba Ba Black Sheep!
Ba Ba Black Sheep! 2017년 10월 3일
댓글: Stephen23 2024년 9월 19일
I want to convert the following:
mat = [1 2 3; 4 5 6 ; 7 8 9];
into the following array of strings,
arr = {'1,2(3)', '4,5(6)', '7,8(9)'};
How can I do that?
  댓글 수: 1
Stephen23
Stephen23 2024년 9월 19일
Since R2016b:
mat = [1,2,3; 4,5,6; 7,8,9];
compose('%u,%u(%u)',mat)
ans = 3x1 cell array
{'1,2(3)'} {'4,5(6)'} {'7,8(9)'}

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

채택된 답변

OCDER
OCDER 2017년 10월 3일
You could use sprintf.
mat = [1 2 3; 4 5 6 ; 7 8 9];
arr = cell(1, size(mat, 1));
for k = 1:numel(arr)
arr{k} = sprintf('%d,%d(%d)', mat(k,:));
end
arr =
'1,2(3)' '4,5(6)' '7,8(9)'

추가 답변 (1개)

KSSV
KSSV 2017년 10월 3일
mat = [1 2 3; 4 5 6 ; 7 8 9];
arr = {'1,2(3)', '4,5(6)', '7,8(9)'};
nx = size(mat,1) ;
iwant = strcat(num2str(mat(:,1)),',',num2str(mat(:,2)),repelem('(',nx,1),num2str(mat(:,3)),repelem(')',nx,1))

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by