Create a wavelet network nonlinearity estimator object
NL = wavenet
NL = wavenet(Name,Value)
creates
a default wavelet network nonlinearity estimator object for estimating
nonlinear ARX and Hammerstein-Wiener models. Use dot notation to customize
the object properties, if needed.NL
= wavenet
creates
a wavelet network nonlinearity estimator object with properties specified
by one or more NL
= wavenet(Name,Value
)Name,Value
pair arguments. The
properties that you do not specify retain their default value.
wavenet
is an object that stores the wavelet
network nonlinearity estimator for estimating nonlinear ARX and Hammerstein-Wiener
models.
Use wavenet
to define a nonlinear function ,
where y is scalar, x is an m
-dimensional
row vector of regressors, and θ represent
the parameters in wavelet expansion. The wavelet network function
is based on the following function expansion:
Here,
f(z) is a radial function called
the scaling function, and z is the input to the
scaling function. z is a 1-by-q row
vector. q is the number of components of x
used
in the scaling and wavelet functions.
g(z) is a radial function called the wavelet function, and z is the input to the wavelet function.
θ represents the following parameters of the nonlinearity estimator:
P and Q —
Projection matrices of size m
-by-p
and m
-by-q
,
respectively.
P and Q are determined
by principal component analysis of estimation data. Usually, p
= m
. If the components of x in the estimation
data are linearly dependent, then p<m
. The number
of columns of Q is q
. q
is
the number of components of x used in the scaling
and wavelet function.
When used in a nonlinear ARX model, q
is
equal to the size of the NonlinearRegressors
property
of the idnlarx
object. When
used in a Hammerstein-Wiener model, m=q=1
and Q is
a scalar.
r – Mean value of the regressor
vector computed from estimation data, specified as a 1-by-m
vector.
as, bs, aw, and bw — Scaling and wavelet parameters, specified as scalars. Parameters with the s subscript are scaling parameters, and parameters with the w subscript are wavelet parameters.
L — Specified as a p
-by-1
vector.
cs and cw –
Specified as a 1-by-q
vectors.
d — Output offset, specified as a scalar.
The value F(x)
is computed by evaluate(NL,x)
,
where NL
is the wavenet object.
For wavenet
object properties, see Properties.
Specify optional
comma-separated pairs of Name,Value
arguments. Name
is
the argument name and Value
is the corresponding value.
Name
must appear inside quotes. You can specify several name and value
pair arguments in any order as
Name1,Value1,...,NameN,ValueN
.
Use Name,Value
arguments to specify additional properties of wavenet
nonlinearity.
For example, NL= wavenet('NumberofUnits',5)
creates
a wavelet nonlinearity estimator object with five nonlinearity units
in wavelet expansion.
|
Number of nonlinearity units in wavelet expansion, specified as a positive integer or one of the following values:
Default: | ||||||||||||||||||||||||||||||||||||
|
Inclusion of linear term, specified as one of the following values:
Default: | ||||||||||||||||||||||||||||||||||||
|
Parameters in wavelet expansion, specified as a structure with the following fields:
The parameters are typically not assigned directly. They are
estimated by the identification algorithm ( | ||||||||||||||||||||||||||||||||||||
|
Options specifying the initial wavelet nonlinearity structure, specified as a structure with the following fields:
|
wavenet
can be used in both Nonlinear ARX
and Hammerstein-Wiener models.
When used in a Nonlinear ARX model:
If the Focus
estimation option (see, nlarxOptions
) is
'prediction'
, wavenet
uses a fast, noniterative technique for estimating parameters [1]. Successive refinements after the first estimation use an
iterative algorithm.
If Focus
is 'simulation'
,
wavenet
uses an iterative technique for
estimating parameters.
To always use a noniterative or iterative algorithm, specify the
IterativeWavenet
option of nlarxOptions
.
When used in a Hammerstein-Wiener model, wavenet
parameters
are determined by iterative minimization.
[1] Zhang, Q. “Using wavelet network in nonparametric estimation.” IEEE Trans. on Neural Networks, Vol. 8, Number 2, March 1997, pp. 227-236.