I am trying to identify a state space model from discrete time series data in Python using statsmodels
library: statsmodel.tsa.statespace.sarimax.SARIMAX
.
I need the matrices of the state space general form (here the statsmodel reference): from the statsmodel page these matrices are explained but it is not clear how to extrapolate them.
For example if I want to apply a kalman filter to the identified model (by means of a sarimax) I need the matrices described in this picture state space matrices needed
Is it possible to obtain the matrices coefficients with statsmodel
?