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