rounding to an arbitrary number of significant digits - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T00:42:40Z http://stackoverflow.com/feeds/question/202302 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits 3 rounding to an arbitrary number of significant digits DougN 2008-10-14T18:37:17Z 2009-10-26T21:52:47Z <p>How can you round <em>any</em> number (not just integers > 0) to N significant digits?</p> <p>For example, if I want to round to 3 significant digits, I'm looking for a formula that could take:</p> <p>1,239,451 and return 1,240,000</p> <p>12.1257 and return 12.1</p> <p>.0681 and return .0681</p> <p>5 and return 5</p> <p>Naturally the algorithm should not be hard-coded to only handle N of 3, although that would be a start.</p> http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/202336#202336 6 Answer by Claudiu for rounding to an arbitrary number of significant digits Claudiu 2008-10-14T18:47:01Z 2008-10-14T18:59:56Z <p>SUMMARY:</p> <pre><code>double roundit(double num, double N) { double d = log10(num); double power; if (num &gt; 0) { d = ceil(d); power = -(d-N); } else { d = floor(d); power = -(d-N); } return (int)(num * pow(10.0, power) + 0.5) * pow(10.0, -power); } </code></pre> <p><hr></p> <p>So you need to find the decimal place of the first non-zero digit, then save the next N-1 digits, then round the Nth digit based on the rest.</p> <p>We can use log to do the first.</p> <pre><code>log 1239451 = 6.09 log 12.1257 = 1.08 log 0.0681 = -1.16 </code></pre> <p>So for numbers > 0, take the ceil of the log. For numbers &lt; 0, take the floor of the log.</p> <p>Now we have the digit <code>d</code>: 7 in the first case, 2 in the 2nd, -2 in the 3rd.</p> <p>We have to round the <code>(d-N)</code>th digit. Something like:</p> <pre><code>double roundedrest = num * pow(10, -(d-N)); pow(1239451, -4) = 123.9451 pow(12.1257, 1) = 121.257 pow(0.0681, 4) = 681 </code></pre> <p>Then do the standard rounding thing:</p> <pre><code>roundedrest = (int)(roundedrest + 0.5); </code></pre> <p>And undo the pow.</p> <pre><code>roundednum = pow(roundedrest, -(power)) </code></pre> <p>Where power is the power calculated above.</p> http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/202360#202360 0 Answer by Mark Bessey for rounding to an arbitrary number of significant digits Mark Bessey 2008-10-14T18:52:37Z 2008-10-14T18:52:37Z <p>Have you tried just coding it up the way you'd do it by hand?</p> <ol> <li>Convert the number to a string</li> <li>Starting at the beginning of the string, count digits - leading zeroes aren't significant, everything else is.</li> <li>When you get to the "nth" digit, peek ahead at the next digit and if it's 5 or higher, round up.</li> <li>Replace all of the trailing digits with zeroes.</li> </ol> http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/202476#202476 0 Answer by Ates Goral for rounding to an arbitrary number of significant digits Ates Goral 2008-10-14T19:20:32Z 2008-10-15T04:09:16Z <p>Here's a short and sweet JavaScript implementation:</p> <pre><code>function sigFigs(n, sig) { var mult = Math.pow(10, sig - Math.floor(Math.log(n) / Math.LN10) - 1); return Math.round(n * mult) / mult; } alert(sigFigs(1234567, 3)); // Gives 1230000 alert(sigFigs(0.06805, 3)); // Gives 0.0681 alert(sigFigs(5, 3)); // Gives 5 </code></pre> http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/730518#730518 1 Answer by Justin Wignall for rounding to an arbitrary number of significant digits Justin Wignall 2009-04-08T15:26:57Z 2009-04-08T15:26:57Z <p>Isn't the "short and sweet" JavaScript implementation</p> <pre><code>Number(n).toPrecision(sig) </code></pre> <p>e.g.</p> <pre><code>alert(Number(12345).toPrecision(3) </code></pre> <p>?</p> <p>Sorry, I'm not being facetious here, it's just that using the "roundit" function from Claudiu and the .toPrecision in JavaScript gives me different results but only in the rounding of the last digit.</p> <p>JavaScript:</p> <pre><code>Number(8.14301).toPrecision(4) == 8.143 </code></pre> <p>.NET</p> <pre><code>roundit(8.14301,4) == 8.144 </code></pre> http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/1581007#1581007 1 Answer by Pyrolistical for rounding to an arbitrary number of significant digits Pyrolistical 2009-10-17T00:20:15Z 2009-10-23T22:25:30Z <p>Here's the same code in Java without the 12.100000000000001 bug that the accepted answer has.</p> <p>I also removed repeated code, changed <code>power</code> to a type integer to prevent floating issues when <code>n - d</code> is done, and made the long intermediate more clear</p> <p>The bug was caused by multiplying a large number with a small number. Instead I divide two numbers of similar size.</p> <p><strong>EDIT</strong><br /> Fixed more bugs. Added check for 0 as it would result in NaN. Made the function actually work with negative numbers (The original code doesn't handle negative numbers because a log of a negative number is a complex number)</p> <pre><code>public static double roundToSignificantFigures(double num, int n) { if(num == 0) { return 0; } final double d = Math.ceil(Math.log10(num &lt; 0 ? -num: num)); final int power = n - (int) d; final double magnitude = Math.pow(10, power); final long shifted = Math.round(num*magnitude); return shifted/magnitude; } </code></pre> http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/1581060#1581060 0 Answer by Loadmaster for rounding to an arbitrary number of significant digits Loadmaster 2009-10-17T00:41:19Z 2009-10-26T21:52:47Z <p><em>[Corrected, 2009-10-26]</em><br/></p> <p>Essentially, for N significant <em>fractional</em> digits:</p> <p>&bull; Multiply the number by 10<sup>N</sup><br/> &bull; Add 0.5<br/> &bull; Truncate the fraction digits (i.e., truncate the result into an integer)<br/> &bull; Divide by 10<sup>N</sup></p> <p>For N significant <em>integral</em> (non-fractional) digits:</p> <p>&bull; Divide the number by 10<sup>N</sup><br/> &bull; Add 0.5<br/> &bull; Truncate the fraction digits (i.e., truncate the result into an integer)<br/> &bull; Multiply by 10<sup>N</sup></p> <p>You can do this on any calculator, for example, that has an "INT" (integer truncation) operator.</p>