i would like to understand basic idea of state space model,generally definition of state space model says that
State space model (SSM) refers to a class of probabilistic graphical model (Koller and Friedman, 2009) that describes the probabilistic dependence between the latent state variable and the observed measurement. The state or the measurement can be either continuous or discrete
now consider following situation,suppose our model is consisted by stat equation and observation equation,where state equation is given by following formula
$X(t+1)=A*x(t)+n(t)$
where A is an n × n state-transition matrix,so it means that it describes transition places for given position?and $n(t)$ is Gaussian noise,and also observation equation is described by: The m-dimensional measurement y(t) is subject to a linear transformation of the hidden state x(t) and is further corrupted by a measurement noise process v(t)
$y(t)=B*x(t)+v(t)$
now i am confused in the following things,first equation simply says that state equation represents similar to random walk,we have transition matrix as given in the following link(https://en.wikipedia.org/wiki/Stochastic_matrix), but what does second equation shows? what is a measurement in this case?i am interested meaning of measurement in such models, i have started learning state space models a few days ago and i am still confused in several terminology,firs such terminology is measurement definition,thanks a lot
The second equation describes your system observation i.e. the output of your sensors and can be anything from velocity to torque or position. The error term $v(t)$ denotes the measurement error which stems from non ideal sensors.
– Karl Hardr Jun 18 '13 at 13:14