Convert a matrix to { }
조회 수: 1 (최근 30일)
이전 댓글 표시
Can anyone help me to convert a matrix that is for instance:
0 1 2
3 4 5
6 7 8
called symbols obtained from an image to something that is in the following form symbols= {'0' '1' '2' '3' '4' '5' '6' '7' '8'}.
댓글 수: 0
답변 (3개)
Jan
2013년 10월 6일
편집: Jan
2013년 10월 6일
symbols = [0 1 2; ...
3 4 5; ...
6 7 8];
S = sprintf('%g*', symbols.');
S(end) = []; % Remove trailing *
C = regexp(S, '*', 'split');
Another simpler method:
C = cell(1, numel(symbols));
symbols = symbols.';
for iC = 1:numel(symbols)
C{iC} = sprintf('%g', symbols(iC));
end
I'm not convinced, that the conversion will really help to solve your problem.
댓글 수: 0
Andrei Bobrov
2013년 10월 6일
편집: Andrei Bobrov
2013년 10월 7일
A = [0 1 2
3 4 5
6 7 8];
cellstr(sprintf('%d',A')')'
other variant:
regexp(num2str(reshape(A.',1,[])),'\d*','match')
댓글 수: 2
Andrei Bobrov
2013년 10월 7일
편집: Andrei Bobrov
2013년 10월 7일
Hi Jan, I agree with you and I suggest another option.
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!