I want to round according to arbitrary divisions, e.g. I get a number from 0 to 1 and I want to round it according to divisions into 48ths, e.g. if I get something like 5/96, i want either 2/48 or 3/48. What’s a good formula to do that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The same as with rounding to decimal signs. If you have
n‘divisions’ and numberx, doround(x*n)/n.In your example, it’ll be
round((5/96)*48)/48 = round(2.5)/48 = 2/48roundcan be replaced withfloororceil, depending on the direction you want.