Main Content

idnlhw

Hammerstein-Wiener Model

Description

An idnlhw model represents a Hammerstein-Wiener model, which is a nonlinear model that is composed of a linear dynamic element and nonlinear functions of the inputs and outputs of the linear system. These nonlinear functions are known as nonlinearity estimators, or more generally as mapping objects.

The following figure illustrates the structure of the Hammerstein-Wiener model.

The input nonlinearity block is on the left. The linear block is in the middle. The output nonlinearity block is on the right.

The software computes the Hammerstein-Wiener model output y in three stages:

  1. It uses the input nonlinearity f to transform the input vector u(t) into the intermediate variable w(t)

    The input nonlinearity is a static (memoryless) function, where the value of the output a given time t depends only on the input value at time t.

    You can configure the input nonlinearity as a sigmoid network, wavelet network, saturation, dead zone, piecewise linear function, one-dimensional polynomial, or custom network. You can also remove the input nonlinearity by applying a unit gain.

  2. It uses w(t) as the input to the dynamic linear block, which you configure as the transfer function B/F. The output of the linear block is x(t).

  3. It transforms x(t) using the output nonlinearity h. The output of the block is y(t).

    Similar to the input nonlinearity, the output nonlinearity is a static function. You can configure the output nonlinearity in the same way as the input nonlinearity. In addition to the input nonlinearity options, you also configure the output nonlinearity as a Gaussian process.

The resulting Hammerstein-Wiener models are idnlhw objects that store all model data, including the parameters of the input and output nonlinearities and the coefficients of the transfer function. For more information about these objects, see Nonlinear Model Structures.

For more detail on Hammerstein-Wiener models, including the computation stages, see What are Hammerstein-Wiener Models?.

For idnlhw object properties, see Properties.

Creation

You can obtain an idnlhw object in one of two ways.

  • Use the nlhw command to both construct an idnlhw object and estimate the model parameters.

    sys = nlhw(Data,Orders,InputNL,OutputNL)

  • Use the idnlhw constructor to create the Hammerstein-Wiener model and then estimate the model parameters using nlhw or pem. This syntax is useful when you need to customize the model structure, such as when you want to fix certain coefficients to their initial values, before performing an estimation.

    sys = idnlhw(Orders,InputNL,OutputNL))

Description

Specify Model Directly

example

sys = idnlhw(Orders) creates a Hammerstein-Wiener model with the specified orders, and using piecewise linear functions as input and output nonlinearities.

example

sys = idnlhw(Orders,InputNonlinearity,OutputNonlinearity) uses InputNonlinearity and OutputNonlinearity as the input and output nonlinearity estimators, respectively.

Initialize Model Values Using Linear Model

example

sys = idnlhw(LinModel) uses a linear model LinModel to specify the model orders and default piecewise linear functions for the input and output nonlinearity estimators.

sys = idnlhw(LinModel,InputNonlinearity,OutputNonlinearity) specifies input and output nonlinearity estimators for the model.

Specify Model Properties

example

sys = idnlhw(___,Name,Value) specifies additional attributes of the idnlhw model structure using one or more Name,Value arguments. You can use this syntax with any of the previous input argument combinations.

Input Arguments

expand all

Order and delays of the linear subsystem transfer function, specified as a [nb nf nk] vector.

Dimensions of Orders:

  • For a SISO transfer function, Orders is a vector with 3 positive integers.

    nb is the number of zeros plus 1, nf is the number of poles, and nk is the input delay.

  • For a MIMO transfer function with nu inputs and ny outputs, Orders is a vector of matrices.

    nb, nf, and nk are ny-by-nu matrices whose i-jth entry specifies the orders and delay of the transfer function from the jth input to the ith output.

Discrete-time linear model used to specify the linear subsystem, specified as one of the following:

  • Input-output polynomial model of Output-Error (OE) structure (idpoly)

  • State-space model (idss)

  • Transfer function model (idtf)

Typically, you estimate the model using oe, n4sid, or tfest.

Properties

expand all

Model orders and delays of the linear subsystem transfer function, where nb is the number of zeros plus 1, nf is the number of poles, and nk is the input delay.

For a MIMO transfer function with nu inputs and ny outputs, nb, nf, and nk are ny-by-nu matrices whose i-jth entry specifies the orders and delay of the transfer function from the jth input to the ith output.

Linear block numerator polynomial B, specified as a cell array of ny-by-nu elements, where ny is the number of outputs and nu is the number of inputs. An element B{i,j} is a row vector representing the numerator polynomial for the jth input to ith output transfer function. The element contains nk leading zeros, where nk is the number of input delays.

Linear block denominator polynomial F, specified as a cell array of ny-by-nu elements, where ny is the number of outputs and nu is the number of inputs. An element F{i,j} is a row vector representing the denominator polynomial for the jth input to ith output transfer function.

Option to fix or free the parameters of the B polynomial, specified as a logical matrix of ny-by-nu elements, where ny is the number of outputs and nu is the number of inputs. An element Bfree(i,j) is a row vector representing the numerator polynomial for the jth input to ith output transfer function. Bfree(i,j) = false causes the numerator of the linear transfer function between the input j and output i to be fixed to B(i,j)}. The software honors the Bfree specification only if the B polynomial contains finite values.

Option to fix or free the parameters of the F polynomial, specified as a logical matrix of ny-by-nu elements, where ny is the number of outputs and nu is the number of inputs. An element Ffree(i,j) is a row vector representing the numerator polynomial for the jth input to ith output transfer function. Ffree(i,j) = false causes the numerator of the linear transfer function between the input j and output i to be fixed to F(i,j). The software honors the Ffree specification only if the F polynomial contains finite values.

Input nonlinearity estimator, specified as a column array containing one or more of the following strings or mapping objects. Note that idGaussianProcess, which can be used as an output nonlinearity estimator, cannot be used as an input nonlinearity estimator.

'idPiecewiseLinear' or idPiecewiseLinear objectPiecewise linear function
'idSigmoidNetwork' or idSigmoidNetwork objectSigmoid network
'idWaveletNetwork' or idWaveletNetwork objectWavelet network
'idSaturation' or idSaturation objectSaturation
'idDeadZone' or idDeadZone objectDead zone
'idPolynomial1D' or idPolynomial1D objectOne-dimensional polynomial
idCustomNetwork objectCustom network — Similar to idSigmoidNetwork, but with a user-defined replacement for the sigmoid function.
'idNeuralNetwork' or idNeuralNetwork objectMultilayer neural network (requires Statistics and Machine Learning Toolbox™ or Deep Learning Toolbox™)
'idUnitGain' or [] or idUnitGain objectUnit gain. Effectively eliminates nonlinearity block.

Specifying a character vector, for example 'idSigmoidNetwork', creates a mapping object with default settings. Alternatively, you can specify nonlinearity estimator properties in two other ways:

  • Create the nonlinearity function using arguments to modify default properties.

    InputNL = idSigmoidNetwork(15)
  • Create a default nonlinearity function first and then use dot notation to modify properties.

    InputNL = idSigmoidNetwork;
    InputNL.NumberOfUnits = 15

For nu input channels, you can specify nonlinear estimators individually for each input channel by setting InputNL to an nu-by-1 array of nonlinearity estimators. To specify the same nonlinearity for all inputs, specify a single input nonlinearity estimator.

Output nonlinearity estimator, specified as a column array containing one or more of the following strings or mapping objects.

'idPiecewiseLinear' or idPiecewiseLinear objectPiecewise linear function
'idSigmoidNetwork' or idSigmoidNetwork objectSigmoid network
'idWaveletNetwork' or idWaveletNetwork objectWavelet network
'idSaturation' or idSaturation objectSaturation
'idDeadZone' or idDeadZone objectDead zone
'idPolynomial1D' or idPolynomial1D objectOne-dimensional polynomial
'idGaussianProcess' or idGaussianProcess objectGaussian process regression model (requires Statistics and Machine Learning Toolbox)
idCustomNetwork objectCustom network — Similar to idSigmoidNetwork, but with a user-defined replacement for the sigmoid function.
'idNeuralNetwork' or idNeuralNetwork objectMultilayer neural network (requires Statistics and Machine Learning Toolbox or Deep Learning Toolbox)
'idUnitGain' or [] or idUnitGain objectUnit gain. Effectively eliminates nonlinearity block.

Specifying a character vector, for example 'idSigmoidNetwork', creates a mapping object with default settings. Alternatively, you can specify nonlinearity estimator properties in two other ways:

  • Create the nonlinearity function using arguments to modify default properties.

    NL = idSigmoidNetwork(15)
  • Create a default nonlinearity function first and then use dot notation to modify properties.

    outputNL = idSigmoidNetwork;
    OutputNL.NumberOfUnits = 15

For ny output channels, you can specify nonlinear estimators individually for each output channel by setting OutputNL to an ny-by-1 array of nonlinearity estimators. To specify the same nonlinearity for all outputs, specify a single output nonlinearity estimator.

This property is read-only.

The linear model in the linear block of the model structure, specified as an idpoly object.

Input and output centering and scaling, specified as a structure. As the following table shows, each field in the structure contains a row vector with a length that is equal to the number of either model inputs (nu) or model outputs (ny).

FieldDescriptionDefault Element Value
InputCenterRow vector of length nuNaN
InputScaleRow vector of length nuNaN
OutputCenterRow vector of length nyNaN
OutputScaleRow vector of length nyNaN

For a matrix X, with centering vector C and scaling vector S, the software computes the normalized form of X using Xnorm = (X-C)./S.

The following figure illustrates the normalization flow for a Hammerstein-Wiener model.

Flow diagram for normalization contains, from left to right, input normalization, input nonlinearity, linear function, output nonlinearity, output normalization

In this figure:

  1. The algorithm uses the centering and scaling parameters to normalize u(t) as uN(t).

  2. uN(t) provides the input to the sequence of input nonlinearity, linear function, and output nonlinearity. The output of the sequence is yN(t).

  3. The algorithm restores the original range of the output, producing y(t).

Typically, the software normalizes the data automatically during model estimation, in accordance with the option settings in nlhwOptions for Normalize and NormalizationOptions. You can also directly assign centering and scaling values by specifying the values in vectors, as described in the previous table. The values that you assign must be real and finite. This approach can be useful, for example, when you are simulating your model using inputs that represent a different operating point from the operating point for the original estimation data. You can assign the values for any field independently. The software will estimate the values of any fields that remain unassigned (NaN).

This property is read-only.

Summary report that contains information about the estimation options and results when the model is estimated using the nlhw command. Use Report to query a model for how it was estimated, including:

  • Estimation method

  • Estimation options

  • Search termination conditions

  • Estimation data fit

The contents of Report are irrelevant if the model was created by construction.

m = idnlhw([2 2 1]);
m.Report.OptionsUsed
ans =

     []

If you use nlhw to estimate the model, the fields of Report contain information on the estimation data, options, and results.

load iddata1;
m = nlhw(z1,[2 2 1],[],'pwlinear');
m.Report.OptionsUsed
Option set for the nlhw command:

    InitialCondition: 'zero'
             Display: 'off'
      Regularization: [1x1 struct]
        SearchMethod: 'auto'
        SearchOption: [1x1 idoptions.search.identsolver]
        OutputWeight: 'noise'
            Advanced: [1x1 struct]

For more information on this property and how to use it, see Output Arguments in the nlhw reference page and Estimation Report.

Independent time variable for the inputs, outputs, and—when available—internal states, specified as a character vector.

Noise variance (covariance matrix) of the model innovations e. Assignable value is an ny-by-ny matrix. This value is typically set automatically by the estimation algorithm.

Sample time, specified as a positive scalar representing the sampling period. This value is expressed in the unit specified by the TimeUnit property of the model.

Changing this property does not discretize or resample the model.

Units for the time variable, the sample time Ts, and any time delays in the model, specified as one of the following values:

  • 'nanoseconds'

  • 'microseconds'

  • 'milliseconds'

  • 'seconds'

  • 'minutes'

  • 'hours'

  • 'days'

  • 'weeks'

  • 'months'

  • 'years'

Changing this property has no effect on other properties, and therefore changes the overall system behavior. Use chgTimeUnit (Control System Toolbox) to convert between time units without modifying system behavior.

Input channel names, specified as one of the following:

  • Character vector — For single-input models, for example, 'controls'.

  • Cell array of character vectors — For multi-input models.

Input names in Hammerstein-Wiener models must be valid MATLAB® variable names after you remove any spaces.

Alternatively, use automatic vector expansion to assign input names for multi-input models. For example, if sys is a two-input model, enter:

sys.InputName = 'controls';

The input names automatically expand to {'controls(1)';'controls(2)'}.

When you estimate a model using an iddata object, data, the software automatically sets InputName to data.InputName.

You can use the shorthand notation u to refer to the InputName property. For example, sys.u is equivalent to sys.InputName.

Input channel names have several uses, including:

  • Identifying channels on model display and plots

  • Extracting subsystems of MIMO systems

  • Specifying connection points when interconnecting models

Input channel units, specified as one of the following:

  • Character vector — For single-input models, for example, 'seconds'.

  • Cell array of character vectors — For multi-input models.

Use InputUnit to keep track of input signal units. InputUnit has no effect on system behavior.

Input channel groups. The InputGroup property lets you assign the input channels of MIMO systems into groups and refer to each group by name. Specify input groups as a structure. In this structure, field names are the group names, and field values are the input channels belonging to each group. For example:

sys.InputGroup.controls = [1 2];
sys.InputGroup.noise = [3 5];

creates input groups named controls and noise that include input channels 1, 2 and 3, 5, respectively. You can then extract the subsystem from the controls inputs to all outputs using:

sys(:,'controls')

Output channel names, specified as one of the following:

  • Character vector — For single-output models. For example, 'measurements'.

  • Cell array of character vectors — For multi-output models.

Output names in Hammerstein-Wiener models must be valid MATLAB variable names after you remove any spaces.

Alternatively, use automatic vector expansion to assign output names for multi-output models. For example, if sys is a two-output model, enter:

sys.OutputName = 'measurements';

The output names automatically expand to {'measurements(1)';'measurements(2)'}.

When you estimate a model using an iddata object, data, the software automatically sets OutputName to data.OutputName.

You can use the shorthand notation y to refer to the OutputName property. For example, sys.y is equivalent to sys.OutputName.

Output channel names have several uses, including:

  • Identifying channels on model display and plots

  • Extracting subsystems of MIMO systems

  • Specifying connection points when interconnecting models

Output channel units, specified as one of the following:

  • Character vector — For single-output models. For example, 'seconds'.

  • Cell array of character vectors — For multi-output models.

Use OutputUnit to keep track of output signal units. OutputUnit has no effect on system behavior.

Output channel groups. The OutputGroup property lets you assign the output channels of MIMO systems into groups and refer to each group by name. Specify output groups as a structure. In this structure, field names are the group names, and field values are the output channels belonging to each group. For example:

sys.OutputGroup.temperature = [1];
sys.OutputGroup.measurement = [3 5];

creates output groups named temperature and measurement that include output channels 1, and 3, 5, respectively. You can then extract the subsystem from all inputs to the measurement outputs using:

sys('measurement',:)

System name, specified as a character vector. For example, 'system 1'.

Any text that you want to associate with the system, specified as a string or a cell array of character vectors. The property stores whichever data type you provide. For instance, if sys1 and sys2 are dynamic system models, you can set their Notes properties as follows.

sys1.Notes = "sys1 has a string.";
sys2.Notes = 'sys2 has a character vector.';
sys1.Notes
sys2.Notes
ans = 

    "sys1 has a string."


ans =

    'sys2 has a character vector.'

Any data you want to associate with the system, specified as any MATLAB data type.

Object Functions

For information about object functions for idnlhw, see Hammerstein-Wiener Models.

Examples

collapse all

Create a Hammerstein-Wiener model with nb and nf = 2 and nk = 1.

 m = idnlhw([2 2 1]);

m has piecewise linear input and output nonlinearity.

m = idnlhw([2 2 1],'idSigmoidNetwork','idDeadZone');

The above is equivalent to:

m = idnlhw([2 2 1],'idsig','iddead');

The specified nonlinearities have a default configuration.

m = idnlhw([2 2 1],idSigmoidNetwork(5),idDeadZone([-1,2]),'InputName','Volts','OutputName','Time');

Create a Wiener model (no input nonlinearity).

m = idnlhw([2 2 1],[],'idSaturation');

Estimate the model.

load iddata1;
m = nlhw(z1,m);

Construct an input-output polynomial model of OE structure.

B = [0.8 1];
F = [1 -1.2 0.5];
LinearModel = idpoly(1,B,1,1,F,'Ts',0.1);

Construct Hammerstein-Wiener model using OE model as its linear component.

m1 = idnlhw(LinearModel,'idSaturation',[],'InputName','Control');

More About

expand all

Version History

Introduced in R2007a

expand all