How to convert a matrix to a string array:
조회 수: 9 (최근 30일)
이전 댓글 표시
I have a matrix:
R=[1 2 1 3 2 3 1;1 1 2 1 2 2 3];
that i want to convert to:
Q=["A11","A21","A12","A31","A22","A32","A13"];
How can I do that?
Appreciated!
댓글 수: 0
채택된 답변
Andrei Bobrov
2021년 5월 9일
"A" + R(1,:)' + R(2,:)'
댓글 수: 4
Walter Roberson
2021년 5월 10일
cell2mat(arrayfun(@(s)sscanf(s, "%*c%1d%1d"),Q,'UniformOutput',false)).'
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!