Round a double to x significant figures after decimal point - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:01:15Z http://stackoverflow.com/feeds/question/374316 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point 4 Round a double to x significant figures after decimal point Rocco 2008-12-17T11:52:09Z 2009-12-17T22:56:12Z <p>If I have a double (234.004223) etc. I would like to round this to x significant digits after the decimal places in C#</p> <p>So far I can only find ways to round to x decimal places but this simply removes the precision if there are any 0s in the number.</p> <p>e.g. 0.086 to 1 decimal place becomes 0.1 but I would like it to stay 0.08.</p> <p>Thanks</p> http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point/374338#374338 1 Answer by divo for Round a double to x significant figures after decimal point divo 2008-12-17T11:59:24Z 2008-12-17T11:59:24Z <p>If I understand you correctly you don't want to round but to truncate:</p> <pre><code>Math.Abs(100 * x) / 100.0; </code></pre> <p>or</p> <pre><code>Math.Truncate(x); </code></pre> http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point/374360#374360 0 Answer by Bravax for Round a double to x significant figures after decimal point Bravax 2008-12-17T12:09:19Z 2008-12-17T15:31:58Z <p>This question is similiar to the one you're asking: </p> <p><a href="http://stackoverflow.com/questions/158172/formatting-numbers-with-significant-figures-in-c#158942">http://stackoverflow.com/questions/158172/formatting-numbers-with-significant-figures-in-c#158942</a></p> <p>Thus you could do the following:</p> <pre><code>double Input2 = 234.004223; string Result2 = Math.Floor(Input2) + Convert.ToDouble(String.Format("{0:G1}", Input2 - Math.Floor(Input2))).ToString("R6"); </code></pre> <p>Rounded to 1 significant digit.</p> http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point/374394#374394 4 Answer by Jon Skeet for Round a double to x significant figures after decimal point Jon Skeet 2008-12-17T12:27:18Z 2008-12-17T12:27:18Z <p>It sounds to me like you don't want to round to x decimal places at all - you want to round to x significant digits. So in your example, you want to round 0.086 to one significant digit, not one decimal place.</p> <p>Now, using a double and rounding to a number of significant digits is problematic to start with, due to the way doubles are stored. For instance, you could round 0.12 to something <em>close</em> to 0.1, but 0.1 isn't exactly representable as a double. Are you sure you shouldn't actually be using a decimal? Alternatively, is this actually for display purposes? If it's for display purposes, I suspect you should actually convert the double directly to a string with the relevant number of significant digits.</p> <p>If you can answer those points, I can try to come up with some appropriate code. Awful as it sounds, converting to a number of significant digits as a string by converting the number to a "full" string and then finding the first significant digit (and then taking appropriate rounding action after that) may well be the best way to go.</p> http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point/374470#374470 3 Answer by P Daddy for Round a double to x significant figures after decimal point P Daddy 2008-12-17T13:01:38Z 2008-12-17T20:28:52Z <p>The framework doesn't have a built-in function to round (or truncate, as in your example) to a number of significant digits. One way you can do this, though, is to scale your number so that your first significant digit is right after the decimal point, round (or truncate), then scale back. The following code should do the trick:</p> <pre><code>static double RoundToSignificantDigits(this double d, int digits){ double scale = Math.Pow(10, Math.Floor(Math.Log10(d)) + 1); return scale * Math.Round(d / scale, digits); } </code></pre> <p>If, as in your example, you really want to truncate, then you want:</p> <pre><code>static double TruncateToSignificantDigits(this double d, int digits){ double scale = Math.Pow(10, Math.Floor(Math.Log10(d)) + 1 - digits); return scale * Math.Truncate(d / scale); } </code></pre> http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point/376946#376946 1 Answer by lakshmanaraj for Round a double to x significant figures after decimal point lakshmanaraj 2008-12-18T05:02:02Z 2008-12-19T04:10:38Z <p>Let inputNumber be Input that needs to be converted with significantDigitsRequired after decimal point, then significantDigitsResult is the answer to the following pseudo code. </p> <p>integerPortion = Math.truncate(<strong>inputNumber</strong>)</p> <p>decimalPortion = myNumber-IntegerPortion</p> <p>if( decimalPortion &lt;> 0 ) {</p> <p>significantDigitsStartFrom = Math.Ceil(-log10(decimalPortion))</p> <p>scaleRequiredForTruncation= Math.Pow(10,significantDigitsStartFrom-1+<strong>significantDigitsRequired</strong>)</p> <p><strong>siginficantDigitsResult</strong> = integerPortion + ( Math.Truncate (decimalPortion*scaleRequiredForTruncation))/scaleRequiredForTruncation</p> <p>} else {</p> <p><strong>siginficantDigitsResult</strong> = integerPortion</p> <p>}</p> http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point/1925170#1925170 0 Answer by Eric for Round a double to x significant figures after decimal point Eric 2009-12-17T22:56:12Z 2009-12-17T22:56:12Z <p>I've been using pDaddy's sigfig function for a few months and found a bug in it. You cannot take the Log of a negative number, so if d is negative the results is NaN.</p> <p>The following corrects the bug:</p> <pre><code> public static double SetSigFigs(double d, int digits) { double scale = d &gt;= 0 ? Math.Pow(10, Math.Floor(Math.Log10(d)) + 1) : Math.Pow(10, Math.Floor(Math.Log10(-d)) + 1); return scale * Math.Round(d / scale, digits); } </code></pre>