active questions tagged significant-digits - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:51:08Zhttp://stackoverflow.com/feeds/tag/significant-digitshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point4Round a double to x significant figures after decimal pointRocco2008-12-17T11:52:09Z2009-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/202302/rounding-to-an-arbitrary-number-of-significant-digits4rounding to an arbitrary number of significant digitsDougN2008-10-14T18:37:17Z2009-12-16T03:59:04Z
<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/417305/how-many-digits-can-be-stored-for-a-number-in-sql-server-20050How many digits can be stored for a number in SQL Server 2005?thursdaysgeek2009-01-06T16:55:21Z2009-01-06T17:17:10Z
<p>I have a number from an Oracle database of 47306832975095894070.85314746810624532. When I bring it into SQL Server, it certainly doesn't show that many digits. It shows as 4.73068329750959E+19, and the field is defined as FLOAT. </p>
<p>I think that probably includes all the significant digits, but I'm being asked if the number can be stored exactly as Oracle had it. Is there a another data type that will store ALL the digits? Is there a way in SQL Server 2005 to display the number not in exponential, but show all the digits stored?</p>