- #1
1plus1is10
- 51
- 0
I have data (all less than 1) and I need to round down to the nearest 1/2, 1/4, 1/8, 1/16, and 1/32.
I have no idea how to do this mathematically, but I'm guessing I use log or pow functions.
For example:
0.81 = 0.5 or 1/2
0.33 = 0.25 or 1/4
0.18 = 0.125 or 1/8
Any help would be appreciated.
Thanks
I have no idea how to do this mathematically, but I'm guessing I use log or pow functions.
For example:
0.81 = 0.5 or 1/2
0.33 = 0.25 or 1/4
0.18 = 0.125 or 1/8
Any help would be appreciated.
Thanks