nwidfullSLS function
Identify a full network using the Sequential Least Squares (SLS) algorithm.
Syntax
model = nwidfullSLS(data,model,orders,options)performs full network identification based on the provided data, initialized network model, model orders and option set. The identified network model is returned.
Input arguments
data
nwdataobjectNetwork data object. All input excitation, input node and output node signals (as referred to by their labels) of the network structure in the predictor model must be present in the data.
model
nwmodelobjectInitialized network model object. For each element, whether or not it is fixed, parameter values of fixed elements and parameter initializations can be set using the
G,TandHfields (PredictorMapobjects). Setting delay terms and orders for each element separately is currently not supported. All modules are assumed to be strictly proper, and a global model order is used.order
positive integer Order of estimated transfer functions in
G,TandH.options
nwidfullSLSOptionsobjectOption set for
nwidfullSLSfunction. Can be constructed usingoptions = nwidfullSLSOptionsfor the default option set oroptions = nwidfullSLSOptions(Name=Value,...)to set specified options.
Output arguments
model
nwmodelobjectEstimated network model object. The
G,TandHfields are populated with the estimated and fixed parameters. TheNoiseCovarianceproperty stores the estimated noise covariance.Details of the estimation are stored in theReportproperty.