NGMV Control Toolbox Previous page   Next Page
toep

Toeplitz matrix form of a continuous-time polynomial.

Syntax

Description

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

Example

p = [1 2 3 4];

tp = toep(p,8,4)

tp =

     0     0     0     0

     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

See also

toepz

Previous page   thru   toepir  Next page