converting binary to decimal

3 次查看(过去 30 天)
i have a value as S=-5
i converted it to binary by
Cw1=dec2bin(typecast(int16(S),'uint16'),15)
now how to convert again to -5
plz assist

采纳的回答

Image Analyst
Image Analyst 2013-1-19
Why are you using uint16 when you have a negative number?????
Anyway,...
S = -5;
Cw1=dec2bin(typecast(int16(S),'uint16'),15)
S_recovered = bin2dec(Cw1)
maxUint16 = intmax('uint16')
maxInt16 = intmax('int16')
if S_recovered > maxInt16
S_recovered = int16(S_recovered - double(maxUint16) - 1)
end
S_recovered will be -5 as a signed 16 bit integer, which is what I assume you want.

更多回答(1 个)

Walter Roberson
Walter Roberson 2013-1-19
typecast(bin2dec(Cw1), 'int16')
  2 个评论
FIR
FIR 2013-1-21
Walter i get
typecast(bin2dec(Cw1), 'int16')
ans =
0 0 -160 16623

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by