I'm trying to estimate the state of a system that is changing linearly wrt time.
For a simple example, think of it as a car going at a constant speed: I want to measure both the distance traveled and the speed. I have as inputs noisy(unreliable) signals of the car's position and speed.
It has been suggested that I build a Kalman filter for this processing. But I am having a hard time seeing the benefit over just repeatedly averaging the speed and distance.
I understand that Kalman filter is good for complex paths with multiple inputs (velocity, acceleration, and further derivatives) (see An Explanation of the Kalman Filter).
But does this still apply to a simple model of constant speed? Is my problem too simple for a Kalman filter, or are there still benefits to it I'm not seeing?