A state-space model of a system with input vector u, output vector y, and disturbance e takes the following form in continuous time:
d (x(t)) / dt = Ax(t)+Ke(t)
y(t) = Cx(t)+e(t)
In the MATLAB function ssest
I am able to extract the A,C and the K parameters, however I am really interested on extracting the e(t)
parameter in order to build the covariance of the residues.
data = iddata(X(:,1:100,10)',[],1);
opt = ssestOptions('EstCovar',true);
sys = ssest(data,[1:10],opt);
A = sys.A; % state transition matrix
C = sys.C; % observation matrix
K = sys.K; % inovation form
Can someone tell me, if with this function, I am able to do so?