convert fixed point to real data

121 次查看(过去 30 天)
lafe
lafe 2017-3-15
Hi, I use the command sfi to convert real values into fixed point representation. Specifically, I use this:
F=sfi(my_value, 32, 16);
A=F.hex;
Now, I need to do the opposite. Convert the fixed point to real value. Any ideas? Is there a command for that?

回答(4 个)

Massimo Zanetti
Massimo Zanetti 2017-3-15
Does this help you?
%get sfi
a = sfi(pi);
%convert to double
d = double(a)
  2 个评论
lafe
lafe 2017-3-15
what if i only have the hex values and not the fi object?
Massimo Zanetti
Massimo Zanetti 2017-3-15
编辑:Massimo Zanetti 2017-3-15
Forget about the double method. Actually, the fi objects have a method to get the real world value:
a = sfi(pi)
%real world value
a.data
ans =
3.1416
If you are not dealing with fi objects and your task is to convert a hex number to decimal, then you would use hex2dec Matlab function.
Note: The hex property does not represent the conversion of your real world value to hex base, here is an example:
%store 5 as signed fixed-point with 8bit word and best fraction
a = sfi(5,8);
a.data
5
a.bin
01010000
a.int
80
a.hex
50
As you can see, the numeric values you get are obtained by converting the binary representation of the fixed point number into int, hex, etc.

请先登录,再进行评论。


John D'Errico
John D'Errico 2017-3-15
编辑:John D'Errico 2017-3-15
In general, whenever you want to convert a numeric value in some other class into a double precision number, you use the function double. This is said without even looking to see if double is defined for that toolbox (I don't have that TB.) I am sure that it is, but I'll check online. Checked.
Use double. Just remember: If you want to make it a double, then double will do it. Similarly, single will convert to a single precision number.
For those who might misinterpret my comment to think that double('1234') should also do that conversion, it is the one case I can think of where you need a different tool. There, you would use str2double.

lafe
lafe 2017-3-17
Maybe I am not clear enough in what I’m asking. Let me explain it to you better…
I have a real value (mVolts) positive or negative. I need to send it to another pc, so I transform it to fixed point value via sfi command and I send the value.hex to a second pc via let’s say TCP/IP.
The second pc takes the value and needs to represent it to real value again. The second pc only has the hex representation, but also the information of how many fractional and decimal bits I have used.
How am I supposed to do the transformation to real value?
  1 个评论
lafe
lafe 2017-3-17
actually I just find the answer.... Firstly to make fix point values:
p=-6.0046;
fix2=sfi(p,32,16);
hex2=fix2.hex;
and then to make them again real...
real2=typecast(uint32(sscanf(hex2, '%x')), 'int32');
op=double(typecast(real2,'int32'))/2^16;

请先登录,再进行评论。


Erik Aderstedt
Erik Aderstedt 2018-3-16
Use storedInteger:
F=sfi(my_value, 32, 16);
value = storedInteger(F);

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by