Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The title speaks for itself: How to convert IEEE-11073 16-bit SFLOAT to simple float in Java?

share|improve this question
1  
Can you provide a citation for this format? I'm having difficulty finding a specification. – Louis Wasserman Jul 19 '12 at 15:56

4 Answers

up vote 3 down vote accepted

You can use bit shifting. extract the sign, exponent and mantissa and shift these so they are in float format. You may need to correct for Infinity and NaN.

share|improve this answer

I can't find any float specification associated with IEEE 11073, you probably mean a Half precision float (sometimes also called Minifloat).

The format is described sufficiently in Wikipedia to easily convert it into a normal float. Basically, you split it into the 3 fields (sign, exponent, mantissa). The sign does not need conversion, just needs to be shifted to the correct position. Then check the exponent if its MIN or MAX value, handle special cases (Inf, NaN, subnormals/denormalized). Otherwise just correct the bias of the exponent and shift to correct position. For the mantissa, add as many zeros to the right as required. Finally put everything together into an int and use Float.intBitsToFloat(bits) to convert the bits into a normal java float.

Conversion from float works almost the same, only with the additional pitfalls of rounding, overflow and underflow.

share|improve this answer
1  
That is most of it, presuming the infinity and NaN conversions are handled properly (including the signaling bit of NaNs). However, you also have to handle denormals. When the biased exponent is 0, the significand field is interpreted differently: The implicit bit is 0, not 1. This must be adjusted for, because the adjusted exponent in the 32-bit float will not be zero, so the implicit bit will be 1. One adjustment is to subtract the value of the implicit bit (0x1p-126) from the 32-bit float (if it is positive, add if negative). – Eric Postpischil Jul 19 '12 at 16:31
Good point, edited it to mention denormalized numbers. SNaN's shouldn't cause trouble since java supresses signalling. – Durandal Jul 19 '12 at 16:33

IEEE-11073 is not in public domain but you can find suffcient information in bluetooth personal health profiles. Google up with full spec# 11073-2060. Following is copy paste from a bluetooth personal health transcoding paper:

"The following information is defined in ISO/IEEE Std. 11073-2060™1-2008 [1]. The SFLOAT-Type data type is defined to represent numeric values that are not integer in type. The SFLOAT-Type is defined as a 16-bit value with 12-bit mantissa and 4-bit exponent. See Annex F.8 of [1] for a thorough definition of the SFLOAT-Type. This data type is defined as follows: Exponent Mantissa Size 4 bit 12 bit

16-bit float type; the integer type is a placeholder only

SFLOAT-Type ::= INT-U16 The 16–bit value contains a 4-bit exponent to base 10, followed by a 12-bit mantissa. Each is in twos-complement form. Special values are assigned to express the following: NaN [exponent 0, mantissa +(2^11 –1) → 0x07FF] NRes [exponent 0, mantissa –(2^11) → 0x0800] + INFINITY [exponent 0, mantissa +(2^11 –2) → 0x07FE] – INFINITY [exponent 0, mantissa –(2^11 –2) → 0x0802] Reserved for future use [exponent 0, mantissa –(2^11 –1) → 0x0801] "

share|improve this answer

This 11073 library has C code that does that:

http://gitorious.org/antidote/antidote/blobs/master/src/util/bytelib.c

Function read_sfloat(), returns a double. Should not be difficult to convert to Java.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.