Convert string to a row matrix
조회 수: 2 (최근 30일)
이전 댓글 표시
hay i want to convert a string into a row matrix
wat i have: '01011100100000100001010110010111'
wat i need: [0 1 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 1 0 0 1 0 1 1 1]
댓글 수: 0
채택된 답변
추가 답변 (2개)
Azzi Abdelmalek
2012년 7월 16일
a= '01011100100000100001010110010111'
b=~isspace(regexprep(a, '0',' '))
댓글 수: 2
Azzi Abdelmalek
2012년 7월 17일
편집: Azzi Abdelmalek
2012년 7월 17일
my aswers is only valid for binary. i know it does'nt work for other numbers
khaled DAWOUD
2012년 7월 17일
편집: khaled DAWOUD
2012년 7월 17일
a= '01011100100000100001010110010111'
% b is the matrix for the a.
for k=1:1:size(a,2)
b(k)=str2num(a(k));
end
댓글 수: 0
참고 항목
카테고리
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!