vote up 4 vote down star

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

flag

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
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
Rounding to significant digits is not the same as rounding to decimal places. 0.3762 to 2 decimal places is 0.38 where as to 2 significant figures/digits it is 0.37 0.0037 to 2 decimal places will correctly be 0.00 but to 2 significant digits it is 0.0037 because 0s are not significant – Rocco Dec 17 '08 at 14:35
show 4 more comments

5 Answers

vote up 4 vote down

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|flag
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
vote up 3 vote down

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|flag
Math.round(...) doesn't take two parameters – leftbrainlogic 2 days ago
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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