covert 128 binary string into hex decimal
29 ビュー (過去 30 日間)
古いコメントを表示
i have 128 bit binary string how to convert it into hex decimal string ?

0 件のコメント
採用された回答
James Tursa
2020 年 12 月 17 日
編集済み: James Tursa
2020 年 12 月 17 日
b = your binary digits vector
d = [8 4 2 1]*reshape(b,4,[]);
h = sprintf('%x',d);
その他の回答 (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!