| DSP Blockset | Search  Help Desk |
| Toeplitz | See Also |
Generate a matrix with Toeplitz symmetry.
Library
Matrix Functions, in Math FunctionsDescription
The Toeplitz block generates a Toeplitz matrix from vectors defining the first column and first row. The top input (Col) is the vector to be placed in the first column of the matrix. The bottom input (Row) is the vector to be placed in the first row of the matrix.
y = toeplitz(Col,Row) % equivalent MATLAB codeOther elements, ri,j, obey the relationship
Col, and the two vectors must be the same length. For example, the following inputs
Col = [1 2 3 4 5] Row = [7 7 3 3 2]produce the Toeplitz matrix
Row) defining both the first row and first column of the matrix:
y = toeplitz(Row) % equivalent MATLAB codeFor example, the Toeplitz matrix generated from the input vector
[1 2 3 4] is
Dialog Box

See Also
Constant Diagonal Matrixtoeplitz (MATLAB)