Issue with using Serialport to take in hex values and plot decimal

3 次查看(过去 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!

回答(1 个)

Shadaab Siddiqie
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;

类别

Help CenterFile Exchange 中查找有关 Instrument Connection and Communication 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by