linalg(deprecated)
toeplitz
create a Toeplitz matrix
Calling Sequence
Parameters
Description
Examples
toeplitz(L)
L
-
list of expressions
Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[ToeplitzMatrix], instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The procedure toeplitz(L) returns the symmetric toeplitz matrix corresponding to the list L.
The matrix result has as many rows (and columns) as there are elements in the list L. The first element of L is placed all along the diagonal, and the ith element of L is placed all along the (i-1)th sub and super diagonals of the result.
The command with(linalg,toeplitz) allows the use of the abbreviated form of this command.
with⁡linalg:
toeplitz⁡a,b,c
abcbabcba
See Also
LinearAlgebra
Download Help Document