27
votes
18answers
2k views
Why can’t decimal numbers be represented exactly in binary?
There have been several questions posted to SO about floating-point representation. For example, the decimal number 0.1 doesn't have an exact binary representation, so it's dangerous to use the == …
22
votes
7answers
1k views
When should I use double instead of decimal?
I can name three advantages to using double (or float) instead of decimal:
Uses less memory
Faster because floating point math operations are natively supported by processors
Can represent a larger …
17
votes
13answers
2k views
Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?
double r = 11.631;
double theta = 21.4;
In the debugger, these are shown as 11.631000000000000 and 21.399999618530273.
How can I avoid this?
17
votes
11answers
1k views
How to alter a float by its smallest increment (or close to it)?
I have a double value f and would like a way to nudge it very slightly larger (or smaller) to get a new value that will be as close as possible to the original but still strictly greater than (or less …
13
votes
6answers
648 views
“Approximate” greatest common divisor
Suppose you have a list of floating point numbers that are approximately multiples of a common quantity, for example
2.468, 3.700, 6.1699
which are approximately all multiples of 1.234. How would …
12
votes
4answers
1k views
When to use “strictfp” keyword in java?
Ok, I've looked up what this does, but does anyone actually have an example of when you would use the "strictfp" keyword in java? Has anyone actually found a use for this?
Would there be any …
12
votes
4answers
849 views
How best to sum up lots of floating point numbers?
Imagine you have a large array of floating point numbers, of all kinds of sizes. What is the most correct way to calculate the sum, with the least error? For example, when the array looks like this:
…
12
votes
19answers
1k views
Why are floating point values so prolific?
So, title says it all. Why are floating point values so prolific in computer programming. Due to problems like rounding errors, and not being able to even accurately represent numbers such as 0.1, I …
11
votes
7answers
737 views
Formatting doubles for output in C#
Running a quick experiment related to Is double Multiplication Broken in .NET? and reading a couple of articles on C# string formatting, I thought that this:
{
double i = 10 * 0.69;
…
11
votes
18answers
3k views
Most effective way for float and double comparison
What would be the most efficient way to compare two doubles or two floats (single precision)?
Simply doing this is not correct:
bool CompareDoubles1 (double A, double B)
{
return A == B;
}
But …
10
votes
10answers
914 views
Test if a floating point number is an integer
This code works (C# 3)
double d;
if(d == (double)(int)d) ...;
Is there a better way to do this?
For extraneous reasons I want to avoid the double cast so; what nice ways exist other than this? …
9
votes
9answers
559 views
Which is more accurate, x**.5 or math.sqrt(x)?
I recently discovered that x**.5 and math.sqrt(x) do not always produce the same result in Python:
Python 2.6.1 (r261:67517, Dec 4 2008, 16:51:00) [MSC v.1500 32 bit (Intel)]
on win32
>>> …
9
votes
6answers
2k views
C#.NET: Is it safe to check floating point values for equality to 0?
I know you can't rely on equality between double or decimal type values normally, but I'm wondering if 0 is a special case.
While I can understand imprecisions between 0.00000000000001 and …
9
votes
8answers
4k views
Using NaN in C++?
What's the best way to use NaNs in C++?
I found std::numeric_limits<double>::quiet_NaN() and std::numeric_limits<double>::signaling_NaN(). I'd like to use signaling_NaN to represent an …
8
votes
11answers
782 views
Is JavaScript’s math broken?
0.1 + 0.2 == 0.3
returns false
0.1 + 0.2 = 0.30000000000000004
Any ideas on why this happens?
