Any help will be greatly appreciated! I have been working with IEEE754 floating point numbers(32-bit single precision), and i am trying to convert it to decimal normalised format. I have found two equations to do it, but i'm not sure which one is correct.
N= (-1)^s * 1.F *2^(e-127)
OR
N= (-1)^s * 1+F * 2^(e-127)
s= sign bit
F= fraction/mantissa
e=exponent
which of the above equation is correct ? in other words is it 1*F or 1+F ?