Issue with using Serialport to take in hex values and plot decimal
1 次查看(过去 30 天)
显示 更早的评论
Hello!
I am trying to plot values from proteus onto matlab, and my proteus values are shown in hexadecimal. I used hex2dec to help me with converting my signal values but my issue is that it only is looking at the positive values. Is there any way to also look at the negative values as well?
Thanks!
0 个评论
回答(1 个)
Shadaab Siddiqie
2021-4-29
From my understanding you want to convert negative hex numbers to decimal, The ability to use these functions on negative numbers is not available in MATLAB.
To work around this issue, use the following code:
ndec2hex.m
function [hexstring]=ndec2hex(x,n)
% x : input decimal number
% n : number of bits to perform 2's complements
% hexstring : hex representation of two's complement of x
x=x + (x<0).*2^n;
hexstring=dec2hex(x, ceil(n/4));
nhex2dec.m
function [x]=nhex2dec(hexstring,n)
% hexstring : hex representation of two's complement of xmydec=hex2dec(hexstring);
% x : input decimal number
% n : number of bits to perform 2's complements
x = hex2dec(hexstring);
x = x - (x >= 2.^(n-1)).*2.^n;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sensor Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!