I am trying to derive a state space equation for human movement (i.e. walking, running, standing still) in some normal distribution sense. The following equations should not be so hard to follow:
If the state $\bar{x} = (x, \dot{x})$
The state equation will be $\bar{x}(t) = A\bar{x}(t-1)$
With the covariance matrix $C(t) = AC(t-1)A^{-1} + Q$
Where $A = \begin{bmatrix} 1 & T \\ 0 & 1 \end{bmatrix}$
where $T$ is the time period,
and where $Q$ a "process noise" covariance matrix.
$Q = \begin{pmatrix} \sigma_x^2 & \sigma_x \sigma_{\dot{x}} \\ \sigma_x \sigma_{\dot{x}} & \sigma_{\dot{x}}^2 \end{pmatrix}$
In my view, the key of a correct model lies in getting correct values of $\sigma_x$ and $\sigma_{\dot{x}}$.
According to wiki, the fastest human speed recorded is 44.72 km/h.
What do you think?