I read an article at one point about a function, which I believe had a name like Piersen or Poisson, used to get random numbers that are close to the previous one. Apparently, it is used in some appliances, and widely used in robotics as described in the article. Here's the original example:
Say you were to be building a robot with two wheels. You want this robot to follow some random path around the room, not going anywhere in particular, turning random amounts at random times. If you were to feed a true random number generator into each wheel, the robot would most likely jerk and spin in place rather than follow some path. The goal isn't for the robot to travel in a stark straight line, rather just to look like it has some logic behind its movements.
Thus exists this function, a continuous yet randomly varying function that curves up and down as it pleases. By taking outputs at a set interval from the function (starting at 234.198, interval of 0.01 for example), one can be guaranteed that each value being sent to a wheel is random, but follows some path along with previous and future values. By choosing a greater or lesser interval, the degree of relationship between consecutive values can be changed to essentially make a progressively more or less intoxicated robot.
What is the name of this function?