IEEE 754 is the most common & widely used floating-point standard, notably the single-precision binary32 aka float and double-precision binary64 aka double formats.
My method is as follows def myMethod(myDouble: Double): Double = myDouble match { case Double.NaN => ... case _ => ... } The IntelliJ …
scala pattern-matching ieee-754 nanI have just heard that the iphone cannot do double natively thereby making them much slower that regular float. Is …
iphone cocoa-touch floating-point ieee-754I am struggeling with floating point arithmetic, because I really want to understand this topic! I know that the numbers …
floating-point binary floating-accuracy ieee-754 denormalizationI've recently read up quite a bit on IEEE 754 and the x87 architecture. I was thinking of using NaN as …
c++ visual-c++ floating-point ieee-754 x87The C++ standard does not discuss the underlying layout of float and double types, only the range of values they …
c++ serialization double portability ieee-754Is there a reasonably fast way to extract the exponent and mantissa from a Number in Javascript? AFAIK there's no …
javascript math haskell ghc ieee-754What's the easiest way to convert a floating point number to its binary representation in Javascript? (e.g. 1.0 -> 0…
javascript binary floating-point ieee-754In my code, float f = -0.0; // Negative and compared with negative zero f == -0.0f result will be true. But …
c++ floating-point ieee-754Is it possible to get division by 0 (or infinity) in the following example? public double calculation(double a, double b) { …
floating-point double floating-accuracy ieee-754