Test if a floating point number is an integer - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:46:03Zhttp://stackoverflow.com/feeds/question/142252http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer10Test if a floating point number is an integerBCS2008-09-26T22:00:38Z2009-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#1422621Answer by swilliams for Test if a floating point number is an integerswilliams2008-09-26T22:03:10Z2008-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#14226320Answer by Mike F for Test if a floating point number is an integerMike F2008-09-26T22:03:10Z2008-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#1422720Answer by Darren Kopp for Test if a floating point number is an integerDarren Kopp2008-09-26T22:04:20Z2008-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#1422742Answer by Michał Piaskowski for Test if a floating point number is an integerMichał Piaskowski2008-09-26T22:05:17Z2008-09-26T22:05:17Z<p>Use Math.Truncate()</p>
http://stackoverflow.com/questions/142252/test-if-a-floating-point-number-is-an-integer/142287#1422876Answer by Khoth for Test if a floating point number is an integerKhoth2008-09-26T22:08:02Z2008-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#1422953Answer by VoxPelli for Test if a floating point number is an integerVoxPelli2008-09-26T22:10:33Z2008-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#1423025Answer by ddaa for Test if a floating point number is an integerddaa2008-09-26T22:12:27Z2009-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#1423092Answer by Bill K for Test if a floating point number is an integerBill K2008-09-26T22:15:32Z2008-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)) < 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#1424121Answer by loudej for Test if a floating point number is an integerloudej2008-09-26T22:50:13Z2008-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#5983120Answer by Crash893 for Test if a floating point number is an integerCrash8932009-02-28T17:05:19Z2009-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>