rounding to an arbitrary number of significant digits - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T00:42:40Zhttp://stackoverflow.com/feeds/question/202302http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits3rounding to an arbitrary number of significant digitsDougN2008-10-14T18:37:17Z2009-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#2023366Answer by Claudiu for rounding to an arbitrary number of significant digitsClaudiu2008-10-14T18:47:01Z2008-10-14T18:59:56Z<p>SUMMARY:</p>
<pre><code>double roundit(double num, double N)
{
double d = log10(num);
double power;
if (num > 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 < 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#2023600Answer by Mark Bessey for rounding to an arbitrary number of significant digitsMark Bessey2008-10-14T18:52:37Z2008-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#2024760Answer by Ates Goral for rounding to an arbitrary number of significant digitsAtes Goral2008-10-14T19:20:32Z2008-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#7305181Answer by Justin Wignall for rounding to an arbitrary number of significant digitsJustin Wignall2009-04-08T15:26:57Z2009-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#15810071Answer by Pyrolistical for rounding to an arbitrary number of significant digitsPyrolistical2009-10-17T00:20:15Z2009-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 < 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#15810600Answer by Loadmaster for rounding to an arbitrary number of significant digitsLoadmaster2009-10-17T00:41:19Z2009-10-26T21:52:47Z<p><em>[Corrected, 2009-10-26]</em><br/></p>
<p>Essentially, for N significant <em>fractional</em> digits:</p>
<p>• Multiply the number by 10<sup>N</sup><br/>
• Add 0.5<br/>
• Truncate the fraction digits (i.e., truncate the result into an integer)<br/>
• Divide by 10<sup>N</sup></p>
<p>For N significant <em>integral</em> (non-fractional) digits:</p>
<p>• Divide the number by 10<sup>N</sup><br/>
• Add 0.5<br/>
• Truncate the fraction digits (i.e., truncate the result into an integer)<br/>
• 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>