Is there any command to split the hexadecimal value automatically..
1 回表示 (過去 30 日間)
古いコメントを表示
ex-C29E01DF3F245CBE I want to split like a=C29E01DF b=3F245CBE...
0 件のコメント
採用された回答
James Tursa
2015 年 6 月 4 日
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);
その他の回答 (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!