From 4548296affb227c29ead868309e48667f8280c55 Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Mon, 26 Jul 2021 11:55:40 +0200 Subject: [PATCH] Binary representation of the floating-point numbers. --- src/algorithms/math/binary-floating-point/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/algorithms/math/binary-floating-point/README.md b/src/algorithms/math/binary-floating-point/README.md index 0952d99f..d1ae7273 100644 --- a/src/algorithms/math/binary-floating-point/README.md +++ b/src/algorithms/math/binary-floating-point/README.md @@ -97,6 +97,7 @@ Be aware that this is by no means a complete and sufficient overview of the IEEE You might also want to check out the following resources to get a deeper understanding of the binary representation of floating-point numbers: +- [Interactive version of this article](https://trekhleb.dev/blog/2021/binary-floating-point/) (allows setting the bits manually and seeing the resulting floating number) - [Here is what you need to know about JavaScript’s Number type](https://indepth.dev/posts/1139/here-is-what-you-need-to-know-about-javascripts-number-type) - [Float Exposed](https://float.exposed/) - [IEEE754 Visualization](https://bartaz.github.io/ieee754-visualization/)