split a hexadecimal vector
조회 수: 7 (최근 30일)
이전 댓글 표시
Hi for all i have a binary vector and i converting it to hexadecimal and i didn't have any problem but the problem is split the hexadecimal vector
this vector: 'D2D370A2' i need : D 2 D 3 7 0 A 2
can i find anyone help me
댓글 수: 1
James Tursa
2015년 1월 19일
What do you mean by "split"? Is the original number a string? What is the class of variable you want for a result? Double? Or ...?
채택된 답변
Guillaume
2015년 1월 19일
s = 'D2D370A2';
regexprep(s, '.(?=.)', '$0 ')
or
s = 'D2D370A2';
strjoin(num2cell(s))
or many other ways...
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!