split a hexadecimal vector

7 views (last 30 days)
mays afif
mays afif on 19 Jan 2015
Commented: mays afif on 20 Jan 2015
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 Comment
James Tursa
James Tursa on 19 Jan 2015
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 ...?

Sign in to comment.

Accepted Answer

Guillaume
Guillaume on 19 Jan 2015
s = 'D2D370A2';
regexprep(s, '.(?=.)', '$0 ')
or
s = 'D2D370A2';
strjoin(num2cell(s))
or many other ways...

More Answers (0)

Categories

Find more on App Building in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!