sticking together 4 hex bytes question
4 ビュー (過去 30 日間)
古いコメントを表示
Hello I have four DECIMAL numer for example 31(1F) 47(2F) 63(3F) FF(255)
how using those decimal numbers i get a HEX number of 1F2F3FFF?
Thanks.
0 件のコメント
回答 (2 件)
Ameer Hamza
2020 年 11 月 1 日
編集済み: Ameer Hamza
2020 年 11 月 1 日
Try this code
x = [31 47 63 255];
y = reshape(dec2hex(x).', 1, [])
Result
>> y
y =
'1F2F3FFF'
6 件のコメント
Ameer Hamza
2020 年 11 月 1 日
I think it is better you run the following lines one by one. Then you will get an idea of what is happening
x = [31 47 63 255];
y = dec2hex(x)
y = y.'
y = reshape(y, 1, [])
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!