Method on @sym: toeplitz (c, r)
Method on @sym: toeplitz (r)

Construct a symbolic Toeplitz matrix.

Examples:

A = toeplitz (sym([0 1 2 3]))
  ⇒ A = (sym 4×4 matrix)

      ⎡0  1  2  3⎤
      ⎢          ⎥
      ⎢1  0  1  2⎥
      ⎢          ⎥
      ⎢2  1  0  1⎥
      ⎢          ⎥
      ⎣3  2  1  0⎦

A = toeplitz (sym([0 1 2 3]), sym([0 -1 -2 -3 -4]))
  ⇒ A = (sym 4×5 matrix)

      ⎡0  -1  -2  -3  -4⎤
      ⎢                 ⎥
      ⎢1  0   -1  -2  -3⎥
      ⎢                 ⎥
      ⎢2  1   0   -1  -2⎥
      ⎢                 ⎥
      ⎣3  2   1   0   -1⎦

Package: symbolic