NGMV Control Toolbox Previous page   Next Page
toepz

Toeplitz matrix form of a discrete-time polynomial.

Syntax

Description

This function sets up the Toeplitz matrix form TP of a discrete-time polynomial P. The number of rows and columns for TP must be supplied.

Example

p = [1 2 3 4];

tp = toepz(p,8,4)

tp =

     1     0     0     0

     2     1     0     0

     3     2     1     0

     4     3     2     1

     0     4     3     2

     0     0     4     3

     0     0     0     4

     0     0     0     0

See also

toep

Previous page   toepir   trimc  Next page