Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
nvbalfieri committed Mar 10, 2019
1 parent 6d671f1 commit 3233622
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ Format value binary (spaces added for readability)
1.3.8 -inf 1 111 00000000
1.3.8 NaN 0 111.00000001 fraction bits just need to be non-zero
1.3.8 -NaN 1 111 00000001

1.3.8 1.0 0 011 00000000 1 * 2^0
1.3.8 -1.0 0 011 00000000
1.3.8 2.0 0 100 00000000
Expand All @@ -90,9 +89,8 @@ Format value binary (spaces added for readability)
1.3.8 -2^3 1 110 00000000
1.3.8 0.5 0 010 00000000 1 * 2^-1
1.3.8 -0.5 1 010 00000000
1.3.8 0.25 0 001 00000000 smallest positive normalized value
1.3.8 0.25 0 001 00000000 smallest positive normal value: 1 * 2^-2
1.3.8 -0.25 1 001 00000000

1.3.8 0.00048828125 0 000.00000001 smallest positive subnormal value: (0 + 1/256) * 2^-3
1.3.8 -0.00048828125 1 000.00000001

Expand Down

0 comments on commit 3233622

Please sign in to comment.