If I have a double (234.004223) etc. I would like to round this to x significant digits after the decimal places in C#

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.

e.g. 0.086 to 1 decimal place becomes 0.1 but I would like it to stay 0.08.

Thanks

link|improve this question

1  
Do you want x no of digits after initial '0's of decimals. For example if you want to keep 2 no of digits to following number 0.00030908 is 0.00031 or do you want 0.00030? or something else? – lakshmanaraj Dec 17 '08 at 11:58
1  
I'm not clear what you mean here. In your example, are you trying to round to 2 decimal places? Or leave just one digit? If the latter, it should be 0.09, surely, rounding up the 6... – Paul Dec 17 '08 at 11:59
Or are you looking for N * 10^X, where N has a specified number of digits? – Paul Dec 17 '08 at 11:59
Please give us some more examples of original numbers and what you want to see as output – Paul Dec 17 '08 at 12:04
2  
I disagree. Rounding to significant digits doesn't mean that you should automatically truncate instead of round. For example, see en.wikipedia.org/wiki/Significant_figures. "... if rounding 0.039 to 1 significant figure, the result would be 0.04." – P Daddy Dec 17 '08 at 20:22
show 4 more comments
feedback

9 Answers

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:

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);
}

If, as in your example, you really want to truncate, then you want:

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);
}
link|improve this answer
Math.round(...) doesn't take two parameters – user63904 Nov 28 '09 at 12:54
8  
@leftbrainlogic: Yes, it really does: msdn.microsoft.com/en-us/library/75ks3aby.aspx – P Daddy Dec 1 '09 at 18:03
Neither of these methods will work with negative numbers as Math.Log10 will return Double.NaN if d < 0. – Fraser Feb 26 at 8:13
1  
@Fraser: Good catch. I'll leave it as an exercise for the reader to add Math.Abs. – P Daddy Feb 26 at 17:21
@PDaddy hmmm, you would need to check if d == 0 as this will result in Double.NaN too - both methods need a couple of guard clauses such as: if(d == 0) { return 0; } if(d < 0) { d = Math.Abs(d); } - otherwise you end up with a division by 0 in both. – Fraser Feb 28 at 13:44
show 1 more comment
feedback

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.

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 close 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.

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.

link|improve this answer
It is for display purposes, I haven't considered a Decimal at all to be honest. How would I go about converting to string with the relevant number of significant digits as you say? I have been unable to find an example in the Double.ToString() method spec. – Rocco Dec 17 '08 at 13:40
feedback

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.

The following corrects the bug:

    public static double SetSigFigs(double d, int digits)
    {   
        double scale = Math.Pow(10, Math.Floor(Math.Log10(Math.Abs(d))) + 1);

        return scale * Math.Round(d / scale, digits);
    }
link|improve this answer
For some reason this code won't convert 50.846113537656557 to 6 sigfigs accurately, any ideas? – Andrew Hancox Jan 14 '10 at 14:17
What results do you get? – Eric Jan 15 '10 at 0:13
3  
Wow, just noticed this. It's neat that you posted this a year to the day after I posted mine. You're right that mine did not take negative numbers into account. But you've reimplemented Math.Abs(), here. You could simplify it to Math.Pow(10, Math.Floor(Math.Log10(Math.Abs(d))) + 1) and skip the d >= 0` check. – P Daddy Jul 28 '10 at 21:12
good call, edited post to reflect – Eric Aug 13 '10 at 17:41
feedback

Let inputNumber be Input that needs to be converted with significantDigitsRequired after decimal point, then significantDigitsResult is the answer to the following pseudo code.

integerPortion = Math.truncate(inputNumber)

decimalPortion = myNumber-IntegerPortion

if( decimalPortion <> 0 ) {

significantDigitsStartFrom = Math.Ceil(-log10(decimalPortion))

scaleRequiredForTruncation= Math.Pow(10,significantDigitsStartFrom-1+significantDigitsRequired)

siginficantDigitsResult = integerPortion + ( Math.Truncate (decimalPortion*scaleRequiredForTruncation))/scaleRequiredForTruncation

} else {

siginficantDigitsResult = integerPortion

}

link|improve this answer
feedback

If I understand you correctly you don't want to round but to truncate:

Math.Abs(100 * x) / 100.0;

or

Math.Truncate(x);
link|improve this answer
feedback

This question is similiar to the one you're asking:

http://stackoverflow.com/questions/158172/formatting-numbers-with-significant-figures-in-c#158942

Thus you could do the following:

double Input2 = 234.004223;
string Result2 = Math.Floor(Input2) + Convert.ToDouble(String.Format("{0:G1}", Input2 - Math.Floor(Input2))).ToString("R6");

Rounded to 1 significant digit.

link|improve this answer
feedback

I found two bugs in method of P Daddy and Eric. This solves for example precision error that was presented by Andrew Hancox in this thread. There was also problem with round directions. 1050 with two significant figures is'nt 1000.0, its 1100.0. The rounding was fixed with MidpointRounding.AwayFromZero.

static void Main(string[] args) {
  double x = RoundToSignificantDigits(1050, 2); // Old = 1000.0, New = 1100.0    
  double y = RoundToSignificantDigits(5084611353.0, 4); // Old = 5084999999.999999, New = 5085000000.0
  double z = RoundToSignificantDigits(50.846, 4); // Old = 50.849999999999994, New =  50.85      
}

static double RoundToSignificantDigits(double d, int digits) {
  if (d == 0.0) {
    return 0.0;
  } else {
    double leftSideNumbers = Math.Floor(Math.Log10(Math.Abs(d))) + 1;
    double scale = Math.Pow(10, leftSideNumbers);
    double result = scale * Math.Round(d / scale, digits, MidpointRounding.AwayFromZero);

    // Clean possible precision error.
    if ((int)leftSideNumbers >= digits) {
      return Math.Round(result, 0, MidpointRounding.AwayFromZero);
    } else {
      return Math.Round(result, digits - (int)leftSideNumbers, MidpointRounding.AwayFromZero);
    }
  }
}
link|improve this answer
feedback

I just did:

int integer1 = Math.Round(double you want to round, significant figures you want to round to)
link|improve this answer
feedback

Here is something i did in C++

/* I had this same problem i was wringing a design sheet and the standard values were rounded. so not to give my values a advantage in a later comparison I need the number rounded so I wrote this bit of code. it will round any double to a given number of significant fugues. but i has a limited range written into the subroutine this is to save time as my numbers were not v large or v small. but you can easily change that to the full double range but will take more time. Ross Mckinstray rmckinstray01@gmail.com */

#include<iostream>
#include<fstream>
#include <string>
#include <math.h>
#include <cmath>
#include <iomanip>
#using namespace std;



double round_off(double input, int places){
double roundA;
double range = pow(10, 10);  // this limits the rane of the rounder to 10/10^10 - 10*10^10 if you want more change range;
for(double j = 10/range; j< 10*range;){
if (input >=j && input < j*10){
double figures = pow(10,places)/10;
roundA = roundf(input/(j/figures))*(j/figures);
}
 j= j*10;
}
cout << "\n in sub after loop" ;
if(input <=10/(10*10) && input >= 10*10){
roundA = input ; cout << "\nDID NOT ROUND change range";}

return roundA;
}

int main(){
double number,sig_fig;

do{
cout << "\nEnter number " ; cin >> number;
cout << "\nEnter sig_fig " ; cin >> sig_fig;
double output = round_off(number , sig_fig);

cout << setprecision(10);
cout <<"\n I= " <<number ;
cout <<"\n r= " <<output ;
cout << "\nEnter 0 as number to exit loop";
}
while(number !=0);



return 0;
}

hopefully i did not change anything formating it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.