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

    %% Specify Options for State Space Estimation  
% Create an option set for |ssest| using the |'backcast'| algorithm to
% initialize the state and set the |Display| to |'on'|.   

% Copyright 2015 The MathWorks, Inc.


%%  
opt = ssestOptions('InitialState','backcast','Display','on');  

%% 
% Alternatively, use dot notation to set the values of |opt|. 
opt = ssestOptions;
opt.InitialState = 'backcast';
opt.Display = 'on';