How to convert integer to 12 bit binary and vise versa

55 次查看(过去 30 天)
Hello, I want to convert integers in the range -400 to +800 to 12 bit binary and vice versa.
dec= -333;
a= decimalToBinaryVector(typecast(int16(dec),'uint16'),16);
str_x = num2str(a);
b=typecast(uint16(bin2dec(str_x)),'int16')
The above code gives me 16 bit Binary value. I want to convert the integer to 12 bit binary and vice versa.
  2 个评论
Walter Roberson
Walter Roberson 2020-3-5
Why? Your code at https://www.mathworks.com/matlabcentral/answers/508682-how-to-pass-binary-values-to-mex already does 12 bit conversion.
A R
A R 2020-3-5
编辑:A R 2020-3-5
Yes Walter, the code does 12 bit conversion. It works well with positive integers, but with negative numbers, I get wrong results while converting from binary to decimal.
b=-70.199;
Y = round(b,1);
dec= Y*10;
temp = dec;
mask = temp < 0;
temp(mask) = 2^12 + temp(mask) ; %temp = 3394
a=decimalToBinaryVector(temp, 12); %a= [1 1 0 1 0 1 0 0 0 0 1 0]
% binary to decimal
str_x = num2str(a);
b=typecast(uint16(bin2dec(str_x)),'int16') % b = 3394
The output of b must be -70.199 but I get 3394 as the decimal value.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2020-3-5
编辑:Walter Roberson 2020-3-5
mod(typecast(int16(dec), 'uint16'), 4096)
and convert to binary.
Or
bitget(int16(dec), 12:-1:1)
which does the binary conversion. You might want to double() the output for your purposes.
  4 个评论
A R
A R 2020-3-6
Hi Walter, your code is the perfect fit to my problem. Thanks a lot.

请先登录,再进行评论。

更多回答(1 个)

Steven Lord
Steven Lord 2020-3-5
There's no int12 data type in MATLAB. Depending on what you want to do with this data, if you have Fixed-Point Designer you could store it as an fi object. See this documentation page for the basics of how to work with fi objects.
>> A = sfi(10, 12, 0)
A =
10
DataTypeMode: Fixed-point: binary point scaling
Signedness: Signed
WordLength: 12
FractionLength: 0
>> bin(A)
ans =
'000000001010'
  1 个评论
A R
A R 2020-3-6
Hello Steven, Thanks a lot for your response. Gonna learn something new today, about Fixed point designer. Will look into the documentation page and how it fits my project and will update you..Thanks again.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by