Test if a floating point number is an integer - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:46:03Z http://stackoverflow.com/feeds/question/142252 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer 10 Test if a floating point number is an integer BCS 2008-09-26T22:00:38Z 2009-05-15T23:01:59Z <p>This code works (C# 3)</p> <pre><code>double d; if(d == (double)(int)d) ...; </code></pre> <ol> <li>Is there a better way to do this?</li> <li>For extraneous reasons I want to avoid the double cast so; what nice ways exist other than this? (even if they aren't as good)</li> </ol> <p><em>Note:</em> Several people pointed out the (important) point that == is often problematic regrading floating point. In this cases I expect values in the range of 0 to a few hundred and they are supposed to be integers (non ints are errors) so if those points "shouldn't" be an issue for me.</p> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142262#142262 1 Answer by swilliams for Test if a floating point number is an integer swilliams 2008-09-26T22:03:10Z 2008-09-26T22:03:10Z <p>You don't need the extra (double) in there. This works:</p> <pre><code>if (d == (int)d) { //... } </code></pre> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142263#142263 20 Answer by Mike F for Test if a floating point number is an integer Mike F 2008-09-26T22:03:10Z 2008-09-26T22:03:10Z <pre><code>d == Math.Floor(d) </code></pre> <p>does the same thing in other words.</p> <p>NB: Hopefully you're aware that you have to be very careful when doing this kind of thing; floats/doubles will very easily accumulate miniscule errors that make exact comparisons (like this one) fail for no obvious reason.</p> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142272#142272 0 Answer by Darren Kopp for Test if a floating point number is an integer Darren Kopp 2008-09-26T22:04:20Z 2008-09-26T22:04:20Z <p>Something like this</p> <pre><code>double d = 4.0; int i = 4; bool equal = d.CompareTo(i) == 0; // true </code></pre> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142274#142274 2 Answer by Michał Piaskowski for Test if a floating point number is an integer Michał Piaskowski 2008-09-26T22:05:17Z 2008-09-26T22:05:17Z <p>Use Math.Truncate()</p> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142287#142287 6 Answer by Khoth for Test if a floating point number is an integer Khoth 2008-09-26T22:08:02Z 2008-09-26T22:08:02Z <p>If your double is the result of another calculation, you probably want something like:</p> <pre><code>d == Math.Floor(d + 0.00001); </code></pre> <p>That way, if there's been a slight rounding error, it'll still match.</p> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142295#142295 3 Answer by VoxPelli for Test if a floating point number is an integer VoxPelli 2008-09-26T22:10:33Z 2008-09-26T22:10:33Z <p>This would work I think:</p> <pre><code>if (d % 1 == 0) { //... } </code></pre> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142302#142302 5 Answer by ddaa for Test if a floating point number is an integer ddaa 2008-09-26T22:12:27Z 2009-05-15T23:01:59Z <p>I cannot answer the C#-specific part of the question, but I must point out you are probably missing a generic problem with floating point numbers.</p> <p>Generally, integerness is not well defined on floats. For the same reason that equality is not well defined on floats. Floating point calculations normally include both rounding and representation errors.</p> <p>For example, <code>1.1 + 0.6 != 1.7</code>.</p> <p>Yup, that's just the way floating point numbers work.</p> <p>Here, <code>1.1 + 0.6 - 1.7 == 2.2204460492503131e-16</code>.</p> <p>Strictly speaking, the closest thing to equality comparison you can do with floats is comparing them <em>up to a chosen precision</em>.</p> <p>If this is not sufficient, you must work with a decimal number representation, with a floating point number representation with built-in error range, or with symbolic computations.</p> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142309#142309 2 Answer by Bill K for Test if a floating point number is an integer Bill K 2008-09-26T22:15:32Z 2008-09-26T22:15:32Z <p>If you are just going to convert it, Mike F / Khoth's answer is good, but doesn't quite answer your question. If you are going to actually test, and it's actually important, I recommend you implement something that includes a margin of error.</p> <p>For instance, if you are considering money and you want to test for even dollar amounts, you might say (following Khoth's pattern):</p> <p>if( Math.abs(d - Math.Floor(d + 0.001)) &lt; 0.001)</p> <p>In other words, take the absolute value of the difference of the value and it's integer representation and ensure that it's small.</p> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142412#142412 1 Answer by loudej for Test if a floating point number is an integer loudej 2008-09-26T22:50:13Z 2008-09-26T22:50:13Z <p>This will let you choose what precision you're looking for, plus or minus half a tick, to account for floating point drift. The comparison is integral also which is nice.</p> <pre><code>static void Main(string[] args) { const int precision = 10000; foreach (var d in new[] { 2, 2.9, 2.001, 1.999, 1.99999999, 2.00000001 }) { if ((int) (d*precision + .5)%precision == 0) { Console.WriteLine("{0} is an int", d); } } } </code></pre> <p>and the output is</p> <pre><code>2 is an int 1.99999999 is an int 2.00000001 is an int </code></pre> http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/598312#598312 0 Answer by Crash893 for Test if a floating point number is an integer Crash893 2009-02-28T17:05:19Z 2009-02-28T17:05:19Z <p>Could you use this</p> <pre><code> bool IsInt(double x) { try { int y = Int16.Parse(x.ToString()); return true; } catch { return false; } } </code></pre>