www.gusucode.com > ident 案例代码 matlab源码程序 > ident/RetrieveValuesOfFreeParametersFromEstimatedModelExample.m

    %% Retrieve Values of Free Parameters from Estimated Model
% Load the estimation data. 

% Copyright 2015 The MathWorks, Inc.

load iddata2 z2;

%%
% Estimate a state-space model.
sys = ssest(z2,3);

%%
% Retrieve the values of the free parameters from the estimated model.
pvec = getpvec(sys,'free');