Explore >> Select a destination


You are here

gus-massa.blogspot.com
| | marcospereira.me
2.8 parsecs away

Travel
| | Understanding floating point representation can help design systems in order to make the most out of this type.
| | probablydance.com
9.4 parsecs away

Travel
| | Here is a rough approximation of float multiplication (source): float rough_float_multiply(float a, float b) { constexpr uint32_t bias = 0x3f76d000; return bit_cast(bit_cast(a) + bit_cast(b) - bias); } We're casting the floats to ints, adding them, adjusting the exponent, and returning as float. If you think about it for a second you will realize that since...
| | esham.io
5.0 parsecs away

Travel
| | Yet another demonstration of why you should store monetary amounts in integers.
| | hiddedevries.nl
39.9 parsecs away

Travel
| Hidde's blog about web accessibility, standards, HTML, CSS, JavaScript and more.