Signed decimal vector to hexadecimal
显示 更早的评论
Hello everyone,
How can I convert signed decimal values into hex? All the functions in Matlab are for unsigned decimal values. I tried to convert the decimal values into 2s complement and then into hex but the values were not the correct.
Anyone could help?
1 个评论
dpb
2014-5-21
>> sprintf('%x', typecast(int16(-3),'uint16'))
ans =
fffd
>>
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!