Exercise12
- Due No Due Date
- Points None
12.1 The Yule-Walker equations
Consider an AR process
a) Multiply the equation by , and take expectations and show that this gives the equations
These equations can be used two ways: We know the coefficients and want to find
for all
, or the other way around. In both cases you get a linear equation system. You should use the symmetry
when forming the equation system.
b) Show that for the 2nd order system we get the equation system
c) You are using least squares to identify the and
coefficients and you have
data points available. Assume your identification experiments results in the model
,
Calculate the expected variance of the parameter errors
and
.
Hint: Use the formula . Here (explain why)
.
d) Use the file exyulewalker.m to compare your results in c) with the results from simulations. Make sure you understand what the commands idpoly, sim, getcov, present do.
12.2 Model structure choice (ARX vs OE)
The file arx_vs_oe.m is a variant of the arxorder.m used on Lecture 11 showing that ARX model order often is overestimated and that an OE model of lower order is often easier to find.
a) Run arx_vs_oe.m and try to understand the code. You will find that the first numerical optimization of a low order OE model (oe3) has for this data set failed to converge to a good solution. This sometimes happens for OE, when the optimization procedure get stuck in a local optimum. Use the produced figures and perhaps also present(oe3), zpk(oe3) and present(oe3) to try to understand the performance of oe3. Would it be a good model to use for control purposes ? (The conclusion is not obvious.)
b) With some help from us, the OE optimization converges to a better solution, oe3w. Explain what was done to produce the better solution.
c) What are the advantages of the oe3w model compared to the oe3 model? Compare Bode diagrams, and the FIT from a 50-timestep prediction of the two models; see also figure(6) and produce a similar plot for oe3w to see the improvement.
12.3 "Continuous Time" Identification
We want to identify coefficients in a system of the form . The true system is given by .
.
a) The file cont_ident.m illustrates the problems when identifying a discrete time 3rd order system, using fast sampling at 1kHz. Try different input signals and ARX orders and see if you can get the identification to work (but don't change the sampling rate). You will probably find this hard.
b) Study how the code uses the filtering to find the continuous time parameters
from standard least regression using the model
You will find that a suitable value of is around 1 rad/s.
12.4 Residual Analysis
Assume that the prediction errors are independent of the input
for all t,s and that both have zero mean and covariance functions
.
Show that the estimate
for large has variance close to
Remark: As mentioned on the lecture, this gives a test level for finding significant correlation between and
. This result is used in the resid command.
Solutions: