Data matrix for autocorrelation matrix estimation
The Toeplitz data matrix computed by corrmtx
depends on the method you
select. The matrix determined by the autocorrelation (default) method is:
In the matrix, m is the same as the input argument m
to corrmtx
and n is length(x)
.
Variations of this matrix are used to return the output H
of
corrmtx
for each method:
'autocorrelation'
— (default) H
= H.
'prewindowed'
— H
is the
n-by-(m + 1) submatrix of H whose first row is [x(1) … 0] and whose last row is [x(n) …
x(n – m)].
'postwindowed'
— H
is the
n-by-(m + 1) submatrix of H whose first row is [x(m + 1) …
x(1)] and whose last row is [0 … x(n)].
'covariance'
— H
is the (n –
m)-by-(m + 1) submatrix of H whose first row is [x(m + 1) …
x(1)] and whose last row is [x(n) …
x(n – m)].
'modified'
— H
is the 2(n – m)-by-(m +
1) matrix Hmod
defined by
[1] Marple, S. Lawrence. Digital Spectral Analysis: With Applications. Prentice-Hall Signal Processing Series. Englewood Cliffs, N.J: Prentice-Hall, 1987.