Tagged Questions
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
8answers
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 ...
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
182 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
533 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?