vote up 1 vote down star

I use an acceleration sensor to calculate the current accelerations and it returns the double value.

However I would like to compare the current acceleration with value 9.8. Before doing that i have to round the value received from the sensor so the question is: How to round a doble value to a selected number of decimals in .NET?

flag

42% accept rate

2 Answers

vote up 6 vote down check

Math.Round(number, precision)

http://msdn.microsoft.com/en-us/library/zy06z30k.aspx

link|flag
vote up 3 vote down

Math.Round - i.e.

double val = Math.Round(current, 1); // 1dp
link|flag
arghhh beat me by 50 seconds :-) – Nathan Koop Mar 28 at 20:43
I edited, so you may well get the points anyway ;-p – Marc Gravell Mar 28 at 20:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.