Create System object for online parameter estimation of AR model
obj = recursiveAR
obj = recursiveAR(na)
obj = recursiveAR(na,A0)
obj = recursiveAR(___,Name,Value)
Use the recursiveAR
command for parameter estimation with
real-time data. If all data necessary for estimation is available at once, and you are
estimating a time-invariant model, use the offline estimation command, ar
.
creates
a System object™ for online parameter estimation of a default
single output AR
model structure. The default model structure has a polynomial
of order 1 and initial polynomial coefficient value obj
= recursiveAReps
.
After creating the object, use the step
command
to update model parameter estimates using recursive estimation algorithms
and real-time data.
specifies
the polynomial order of the AR model to be estimated.obj
= recursiveAR(na
)
specifies
the polynomial order and initial values of the polynomial coefficients.obj
= recursiveAR(na
,A0
)
specifies
additional attributes of the AR model structure and recursive estimation
algorithm using one or more obj
= recursiveAR(___,Name,Value
)Name,Value
pair arguments.
recursiveAR
creates a System object for
online parameter estimation of single output AR models using a recursive
estimation algorithm.
A System object is a specialized MATLAB® object designed specifically for implementing and simulating dynamic systems with inputs that change over time. System objects use internal states to store past behavior, which is used in the next computational step.
After you create a System object, you use commands to process
data or obtain information from or about the object. System objects
use a minimum of two commands to process data — a constructor
to create the object and the step
command
to update object parameters using real-time data. This separation
of declaration from execution lets you create multiple, persistent,
reusable objects, each with different settings.
You can use the following commands with the online estimation System objects in System Identification Toolbox™:
Command | Description |
---|---|
step | Update model parameter estimates using recursive estimation algorithms and real-time data.
|
release | Unlock the System object. Use this command to enable setting of nontunable parameters. |
reset | Reset the internal states of a locked System object to the initial values, and leave the object locked. |
clone | Create another System object with the same object property values. Do not create additional objects using
syntax |
isLocked | Query locked status for input attributes and nontunable properties of the System object. |
Use the recursiveAR
command to create an
online estimation System object. Then estimate the AR model parameter, A
,
and output using the step
command with output data y
.
[A,EstimatedOutput] = step(obj,y)
For recursiveAR
object properties, see Properties.
recursiveAR
System object properties
consist of read-only and writable properties. The writable properties
are tunable and nontunable properties. The nontunable properties cannot
be changed when the object is locked, that is, after you use the step
command.
Use Name,Value
arguments to specify writable
properties of recursiveAR
objects during object
creation. After object creation, use dot notation to modify the tunable
properties.
obj = recursiveAR; obj.ForgettingFactor = 0.99;
|
Estimated coefficients of polynomial A(q), returned as a row vector of real values specified in order of ascending powers of q-1.
|
|
Initial values for the coefficients of polynomial A(q)
of order If the initial guesses are much smaller than the default
Default: |
|
Initial values of the outputs buffer in finite-history estimation,
specified as The When If the initial buffer is set to Specify
Default: |
|
Estimated covariance
The interpretation of
|
|
Covariance of the initial parameter estimates, specified as one of the following:
Use only when
Default: |
|
Recursive estimation algorithm used for online estimation of model parameters, specified as one of the following values:
Forgetting factor and Kalman filter algorithms are more computationally intensive than gradient and unnormalized gradient methods. However, they have better convergence properties. For information about these algorithms, see Recursive Algorithms for Online Parameter Estimation. These methods all use an infinite data history, and are available only
when
Default: |
|
Forgetting factor, λ, relevant for parameter estimation, specified as a scalar in the range (0,1]. Suppose that the system remains approximately constant over T0 samples. You can choose λ such that:
Typical choices of λ are in the range Use only when
Default: |
|
Enable or disable parameter estimation, specified as one of the following:
Default: |
|
Floating point precision of parameters, specified as one of the following values:
Setting
Default: |
|
Covariance matrix of parameter variations, specified as one of the following:
N is the number of parameters to be estimated.
Kalman filter algorithm treats the parameters as states of a
dynamic system and estimates these parameters using a Kalman filter.
Default: |
|
Adaptation gain, γ, used in gradient recursive estimation algorithms, specified as a positive scalar.
Specify a large value for
Default: |
|
Bias in adaptation gain scaling used in the
The normalized gradient algorithm divides the adaptation gain
at each step by the square of the two-norm of the gradient vector.
If the gradient is close to zero, this can cause jumps in the estimated
parameters.
Default: |
|
Data history type defining which type of recursive algorithm you use, specified as:
Algorithms with infinite history aim to produce parameter estimates that
explain all data since the start of the simulation. These algorithms still
use a fixed amount of memory that does not grow over time. The object
provides multiple algorithms of the Algorithms with finite history aim to produce parameter estimates that
explain only a finite number of past data samples. This method is also
called sliding-window estimation. The object provides
one algorithm of the For more information on recursive estimation methods, see Recursive Algorithms for Online Parameter Estimation.
Default: |
|
Window size determining the number of time samples to use for the
sliding-window estimation method, specified as a positive integer. Specify
Choose a window size that balances estimation performance with computational and memory burden. Sizing factors include the number and time variance of the parameters in your model. Always specify Window Length in samples, even if you are using frame-based input processing.
Suitable window length is independent of whether you are using
sample-based or frame-based input processing (see
Default: |
|
Option for sample-based or frame-based input processing, specified as a character vector or string.
Your [theta,EstimatedOutput] = step(obj,y)
Default: |
Starting in R2016b, instead of using the step
command
to update model parameter estimates, you can call the System object with
input arguments, as if it were a function. For example, [A,EstimatedOutput]
= step(obj,y)
and [A,EstimatedOutput] = obj(y)
perform
equivalent operations.
ar
| clone
| isLocked
| Recursive
Polynomial Model Estimator | recursiveARMA
| recursiveARMAX
| recursiveARX
| recursiveBJ
| recursiveLS
| recursiveOE
| release
| reset
| step