Tagged Questions
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 ...
3
votes
1answer
180 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 ...
2
votes
6answers
345 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
?
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.