In order to convert a decimal number to a binary single-precision floating point number, first of all, we need to convert the decimal number to its binary equivalent (unsigned magnitude form). A proper sign should be added based on the…
Tag: mantissa
How to Determine the Binary Value from a Single-precision Floating Point Representation
In the previous article, we have seen the representation of a binary number in IEEE 754 single-precision floating point format. In this article, we will do the reverse process, which means determining the value of a binary number from a…
Single-Precision IEEE 754 Representation for Floating Point Numbers
In the previous article, we got an overall idea about the representation of floating point number. In this article, we will specifically focus on the single-precision IEEE 754 representation of floating point numbers. Single precision format represents any floating point…
Floating Point Format
Imagine you have a processor with registers of size 32 bits. Can the processor store a number larger than 32 bits in one register? It is possible if the number is represented in floating point format. The floating point format…