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

    %% Create and Configure Nonlinear ARX Model
% Create a nonlinear ARX model with specific orders.

% Copyright 2015 The MathWorks, Inc.

M = idnlarx([3 2 1]);

%%
% Configure the model with the following property settings:
%%
% * Sigmoid network nonlinearity with default settings
% * Use inputs only as nonlinear regressors
M.Nonlinearity = 'sigmoidnet';
M.NonlinearRegressors = 'input';