if we have 10 bits floating point . 4 bits=exponent and 5 bits are the fraction.
how to calculate the bias?
is it 2^4=16-1= 15 ?
is that correct?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’d expect it to be 2number of bits in exponent – 1 – 1 (or 7 here), as is the case with more common IEEE-754 formats. Check Wikipedia.