I want to read 4 byte with IEEE floating point format and convert to decimal number in vb.net, and need to function for shift bits to left in vb .net.
32 bit IEEE floating point has this format:
S EEEEEEEE FFFFFFFFFFFFFFF FFFFFFFF
0 1 8 9 31
V=(-1)**S * 2 ** (E-127) * (1.F) where "1.F" is intended to represent the binary number created by prefixing F with an implicit leading 1 and a binary point.
can some one help me?
thanks.
32 bit IEEE floating point has this format:
S EEEEEEEE FFFFFFFFFFFFFFF FFFFFFFF
0 1 8 9 31
V=(-1)**S * 2 ** (E-127) * (1.F) where "1.F" is intended to represent the binary number created by prefixing F with an implicit leading 1 and a binary point.
can some one help me?
thanks.
Comment