vote up 2 vote down star

I recently had a need to interpret a DEC 32-bit floating point representation. It differs from the IEEE floating point representations in the number of bits allocated to the exponent and mantissa.

Here's a description of a bunch of floating point formats:

http://www.quadibloc.com/comp/cp0201.htm

I managed to roll my own C++ code to stuff a DEC 32-bit float into an IEEE 32-bit float but was wondering if there were any libraries out there that had tackled this conversion and others already.

I checked boost.org but didn't see any in there.

flag

was it a gfloat? or dfloat? – EvilTeach Oct 12 '08 at 2:09
Good question! I think I got reasonable numbers without actually knowing which format. I'll figure it out and post another comment when I'm in front of my code again. – John W Oct 12 '08 at 2:34
EvilTeach, it looks like it was dfloat (55 mantissa bits). – John W Oct 23 '08 at 22:17

2 Answers

vote up 2 vote down check

You mean like libvaxdata?

I've never used it - I just found it by googling. But it looks like what you're looking for.

It's a C library rather than C++, but converting floating point data should work fine from extern "C" calls.

link|flag
vote up 1 vote down

Ha ... not sure why I didn't check Code Project:

http://www.codeproject.com/KB/applications/libnumber.aspx

link|flag

Your Answer

Get an OpenID
or

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