In one of your comments you indicated that the binary number represents a float in 8 byte long IEEE 754 binary64 format. However this is inconsistent with the -0b1110 value you showed as an example, so I've ignored that and and attempted to provide my own properly formatted example input data to test the answer shown below.
Essentially what is done is first the binary string in converted into an integer value, then next into a string of raw bytes, and lastly is passed tostruct.unpack()for conversion to a floating point value. The bin_to_float() function shown below drives the process. Although not illustrated, the binary input string argument can be prefixed with'0b'.
import struct
def bin_to_float(b):
""" convert binary string to float """
bf = int_to_bytes(int(b, 2), 8) # 8 bytes needed for IEEE 754 binary64
return struct.unpack('>d', bf)[0]
def int_to_bytes(n, minlen=0): # helper function
""" int/long to byte string """
nbits = n.bit_length() + (1 if n < 0 else 0) # plus one for any sign bit
nbytes = (nbits+7)/8 # number of whole bytes
bytes = []
for i in range(nbytes):
bytes.append(chr(n & 0xff))
n >>= 8
# zero pad if needed
if minlen > 0 and len(bytes) < minlen:
bytes.extend((minlen-len(bytes)) * '0')
bytes.reverse() # put high bytes at beginning
return ''.join(bytes)
# tests
def float_to_bin(f):
""" convert float to binary string """
ba = struct.pack('>d', f)
s = ''.join('{:08b}'.format(ord(b)) for b in ba)
# strip off leading zeros
for i in range(len(s)):
if s[i] != '0':
break
else: # all zeros
s = '0'
i = 0
return s[i:]
import math
floats = [0.0, 1.0, -14.0, 12.546, math.pi]
for f in floats:
binary = float_to_bin(f)
print 'float_to_bin(%f): %r' % (f, binary)
float = bin_to_float(binary)
print 'bin_to_float(%r): %f' % (binary, float)
print
Test output:
float_to_bin(0.000000): '0'
bin_to_float('0'): 0.000000
float_to_bin(1.000000): '11111111110000000000000000000000000000000000000000000000000000'
bin_to_float('11111111110000000000000000000000000000000000000000000000000000'): 1.000000
float_to_bin(-14.000000): '1100000000101100000000000000000000000000000000000000000000000000'
bin_to_float('1100000000101100000000000000000000000000000000000000000000000000'): -14.000000
float_to_bin(12.546000): '100000000101001000101111000110101001111110111110011101101100100'
bin_to_float('100000000101001000101111000110101001111110111110011101101100100'): 12.546000
float_to_bin(3.141593): '100000000001001001000011111101101010100010001000010110100011000'
bin_to_float('100000000001001001000011111101101010100010001000010110100011000'): 3.141593
12.546look like -- is it IEEE 754 binary32 or binary64? If not, how is the binary point represented or where is its assumed position in the string? – martineau Jan 6 '12 at 3:10'0b10110011000000'is the IEEE 754 binary64 representation of-14.0, not '-0b1110'. – martineau Jan 7 '12 at 3:43-14.0is'1100000000101100000000000000000000000000000000000000000000000000'(in my previous comment the number shown was the little-endian interpretation, but the point made remains the same). – martineau Jan 7 '12 at 18:33