how to add string matrix to numeric matrix?
조회 수: 79 (최근 30일)
이전 댓글 표시
example:
from
a=[rice;corn;wheat]
b=[3;4;3]
become
c=[rice 3;corn 4;wheat 3]
댓글 수: 0
답변 (3개)
José-Luis
2012년 10월 26일
You could use cell arrays:
a={'rice';'corn';'wheat'};
b={3;4;3};
your_result = cellfun(@(a,b) [a ' ' num2str(b)],a,b,'uniformoutput',false);
댓글 수: 4
Walter Roberson
2012년 10월 26일
[a, strcat({' '}, num2str(b))] %output will be cell 3x2 of strings
Walter Roberson
2012년 10월 26일
No, numeric arrays can never contain strings.
Cell arrays can contain both strings and numbers, in separate elements.
c = {'rice', 3; 'corn', 4; 'wheat', 3};
댓글 수: 2
Walter Roberson
2012년 10월 26일
편집: Walter Roberson
2012년 10월 26일
c = [a, num2cell(b)]; %output will be cell 3x2 first col strings second col numeric
Azzi Abdelmalek
2012년 10월 26일
a={'rice';'corn';'wheat'}
b=[3;4;3]
c=arrayfun(@(x) [a{x} ' ' num2str(b(x))],1:3,'un',0)
댓글 수: 0
참고 항목
카테고리
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!