Is there any command to split the hexadecimal value automatically..
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ex-C29E01DF3F245CBE I want to split like a=C29E01DF b=3F245CBE...
0 Kommentare
Akzeptierte Antwort
James Tursa
am 4 Jun. 2015
I suspect your real problem is more complicated (like you have an array of these or a cell array of these), since splitting a single string is simple:
s = 'C29E01DF3F245CBE';
a = s(1:8);
b = s(9:16);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!