John Mavrick's Garden

Search IconIcon to open search

Last updated April 10, 2022

Status: Tags: #aCards/cmpt295/binary Links: Binary Float Byte Structure


IEEE Float Representation

Principles

Image from Gyazo

Format ? Image from Gyazo

Steps

?

  1. Find binary equivalent of number through /2 method
  1. Move decimal to right of leading 1, find scientific notation
  1. Find bias
  1. Remove leading 1, round mantissa up or down

Form

? Binary numerical form ;; $V = (-1)^s M2^E$

Calculating E, bias, M, normalized ?

Calculating E, bias, M, denormalized ?

Float

? Image from Gyazo

Special Cases (all 0/1)

? Image from Gyazo

Double

Image from Gyazo

Examples

Convert 2. Conver to pure binary - Multiply by 2, mod 1 for binary value - Keep going until 0 - Read top to bottom

Convert Decimal to IEEE

Convert 0.09375 to ieee ? Image from Gyazo

Convert -123.3 ? Image from Gyazo

Convert IEEE to Decimal

Image from Gyazo ? Image from Gyazo

Image from Gyazo ? Image from Gyazo


Backlinks


References:

Created:: 2022-01-21 14:51


Interactive Graph