linalg(deprecated)/toeplitz - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : linalg(deprecated)/toeplitz

linalg(deprecated)

  

toeplitz

  

create a Toeplitz matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

toeplitz(L)

Parameters

L

-

list of expressions

Description

• 

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.

Examples

Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[ToeplitzMatrix], instead.

withlinalg:

toeplitza,b,c

abcbabcba

(1)

See Also

LinearAlgebra