Toeplitz matrix
T = toeplitz(
returns
a nonsymmetric Toeplitz
matrix with c
,r
)c
as its first column and r
as
its first row. If the first elements of c
and r
differ, toeplitz
issues
a warning and uses the column element for the diagonal.
T = toeplitz(
returns
the symmetric Toeplitz matrix where:r
)
If r
is a real vector, then r
defines
the first row of the matrix.
If r
is a complex vector with
a real first element, then r
defines the first
row and r'
defines the first column.
If the first element of r
is complex,
the Toeplitz matrix is Hermitian off the main diagonal, which means for . The elements of the main diagonal
are set to r(1)
.