toeplitz
Toeplitz matrix
📝Syntax
T = toeplitz(c, r)
T = toeplitz(r)
📥Input Arguments
Parameter Description
c a scalar or vector: column of Toeplitz matrix.
r a scalar or vector: row of Toeplitz matrix.
📤Output Arguments
Parameter Description
T Toeplitz matrix.
📄Description

T = toeplitz(c, r) returns the Toeplitz matrix whose first row is r and first column is c.

T = toeplitz(c) returns the symmetric Toeplitz matrix.

💡Examples
T = toeplitz(1:5, 1:2:7)
🔗See Also
hankel
📚Bibliography
https://en.wikipedia.org/wiki/Toeplitz_matrix
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub