I have a small math problem I am trying to solve
Given a number x and resolution y, I need to find the next x’ with the required resolution.
e.g.
x = 1.002 y = 0.1 x'= 1.1 x = 0.348 y = 0.1 x'= 0.4 x = 0.50 y = 1 x'= 1 x = 0.32 y = 0.05 x'= 0.35
Is there any smart way of doing this in Python?
produces:
I think your first example output is wrong, The correct answer for x’ is 1.1, right?