Tagged Questions
Significant digits are a way of describing the precision of measurements in a scale-independent way.
21
votes
6answers
11k views
Formatting numbers with significant figures in C#
I have some decimal data that I am pushing into a SharePoint list where it is to be viewed. I'd like to restrict the number of significant figures displayed in the result data based on my knowledge ...
15
votes
12answers
6k views
rounding to an arbitrary number of significant digits
How can you round any number (not just integers > 0) to N significant digits?
For example, if I want to round to 3 significant digits, I'm looking for a formula that could take:
1,239,451 and return ...
10
votes
9answers
16k views
Round a double to x significant figures after decimal point
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 ...
6
votes
3answers
3k views
Nicely representing a floating-point number in python
I want to represent a floating-point number as a string rounded to some number of significant digits, and never using the exponential format. Essentially, I want to display any floating-point number ...
5
votes
2answers
276 views
Is there a way to get the “significant figures” of a decimal?
Update
OK, after some investigation, and thanks in big part to the helpful answers provided by Jon and Hans, this is what I was able to put together. So far I think it seems to work well. I wouldn't ...
4
votes
2answers
1k views
Format double to at least one significant digit in Java/Android
I have a DecimalFormat object which I'm using to format all of my double values to a set number of digits (let's say 2) when I'm displaying them. I would like it to normally format to 2 decimal ...
4
votes
3answers
1k views
Round to n Significant Figures in SQL
I would like to be able to round a number to n significant figures in SQL. So:
123.456 rounded to 2sf would give 120
0.00123 rounded to 2sf would give 0.0012
I am aware of the ROUND() function, ...
3
votes
1answer
179 views
rounding with significant digits
In xcode /objective c for the iphone
I have a float with the value 0.00004876544
how would i get it to display to 2 decimal places after the 1st significant number E.g. 0.00004876544 would read ...
3
votes
5answers
1k views
C++ significant figures
How can I do math involving significant figures in C++? I want this to work correct with measured data from chemistry and physics experiments. An example: 65 / 5 = 10. I would need to get rid of ...
3
votes
4answers
528 views
How do I round an integer up to <nearest large number> in Ruby?
Say I have any of the following numbers:
230957 or
83487 or
4785
What is a way in Ruby I could return them as
300000 or
90000 or
5000, respectively?
2
votes
4answers
85 views
How to round a float to a specified number of significant digits in Ruby?
It would be nice to have an equivalent of R's signif function in Ruby.
For example:
>> (11.11).signif(1)
10
>> (22.22).signif(2)
22
>> (3.333).signif(2)
3.3
>> ...
2
votes
6answers
344 views
How to round down to the nearest significant figure in php
Is there any slick way to round down to the nearest significant figure in php?
So:
0->0
9->9
10->10
17->10
77->70
114->100
745->700
1200->1000
?
2
votes
5answers
485 views
String Format % with significant figures
I am using the following code to show percentage using String.Format but I also want to limit the number of significant figures to 2, the two don't seem to play well together. How can I get the two ...
1
vote
2answers
83 views
Which way has better accuracy to compute the matrix matrix vector product, A B u?
I want to compute the vector,
s = A B u,
where s and u are N-dimensional complex vector, A is a N-by-M complex matrix, B is M-by-N complex matrix. Which of the following two ways has better accuracy ...
1
vote
2answers
174 views
Sql Server significant digits
I have a variable that I want to return a max of 5 to the left of the decimal and always 3 to the right
CONVERT(VARCHAR(14),CONVERT(DECIMAL(8,3),
...
1
vote
5answers
1k views
Preventing double.Parse from removing trailing zeros after decimal place?
When using double.Parse, it seems to like to string away any trailing (insignificant) zeros from the string that I'm converting. I would like double.Parse to keep to places after the decimal. For ...
1
vote
1answer
143 views
Is there any way to print at least 20 significant figures in Octave?
I need to print the result of a program with 20 significant figures, but I don't know how to print more than 15 figures (format long). Is there any way to achieve this?
0
votes
3answers
126 views
Counting significant figures in Python?
Is there a way in Python to count the significant figures in a double/float/etc? I'm not seeing an easy way to do this, but I'd expect it to be in the library.
Thanks in advance.
0
votes
1answer
38 views
py3k print significant figures
In python3 is there a nice way to set significant figures - i.e if I have a list:
l = [2.2738257169723513, 2.2725769281387329, 2.3101812601089478]
I can use the nice new print system and do
...
0
votes
1answer
106 views
Advanced rounding options with BigDecimal
I am writing a program that has to round very large and precise numbers (possibly many more significant digits than even double could handle), and am using BigDecimals.
Is there a way to make ...
0
votes
3answers
503 views
How many digits can be stored for a number in SQL Server 2005?
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 ...
-3
votes
2answers
78 views
Values in R legends are shortened to Ne+n form
We are trying to print some Finnish forestry maps using R. The map is drawn nicely but some of numbers in the legends are not shown in their full length, but in the format 3e+06.
This seem to happen ...