vote up 3 vote down star

In Java, how do I round to an arbitrary value? Specifically, I want to round to .0025 steps, that is:

0.032611 -> 0.0325

0.034143 -> 0.0350

0.035233 -> 0.0350

0.037777 -> 0.0375

...

Any ideas or libs?

flag

2 Answers

vote up 10 vote down
y = Math.round(x / 0.0025) * 0.0025
link|flag
I voted up, but I guess this formula doesn't handle the 2nd case, where the rouding is upwards and not downwards. – João da Silva Jan 28 at 10:21
Thanks for the heads-up. I've changed it to Math.round(). – Zach Scrivena Jan 28 at 10:22
Works great. Thanks. – kenoa Jan 28 at 10:37
Nice answer. Beware of overflows though... – Ran Biron Jan 28 at 15:49
I'm worried about fp inaccuracy on this one. – Tom Hawtin - tackline Aug 22 at 3:32
vote up 1 vote down

You could do this:

double step = 0.0025;
double rounded = ((int)(unrounded / step + 0.5)) * step;
link|flag
i believe in java it's getting to the same problem as it gets in C++: casting to int will truncate large double values into smaller ones. 1e300 for example will become something around 2e9. consider using ceil/floor to avoid the same mess as i did today when answering a similar round question :) – litb Jan 28 at 10:26
Ah yes, I understand now, thank you very much! – Ray Hidayat Jan 28 at 10:52

Your Answer

Get an OpenID
or

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