Online Algebra Calculator
Many of users do not use powerful Maxima computer algebra system for systematic work, but for ad hoc algebraic calculations – equations, functions, matrixes, etc. only. To do this job, it is not useful to download the whole application from a web site.
Function: toeplitz (<col>)
![Toeplitz Example toeplitz([1,2,3],[x,y,z]);
toeplitz([1,1+%i]);](http://maxima-online.org//plot.html?g=i-1977436822.png&t=img&db=r-1105466316)
Function: toeplitz (<col>, <row>) Return a Toeplitz matrix <T>. The first first column of <T> is <col>; except for the first entry, the first row of <T> is <row>. The default for <row> is complex conjugate of <col>. Example:
(%i1) toeplitz([1,2,3],[x,y,z]);
[ 1 y z ] [ ]
(%o1) [ 2 1 y ]
[ ]
[ 3 2 1 ]
(%i2) toeplitz([1,1+%i]);
[ 1 1 - %I ]
(%o2) [ ]
[ %I + 1 1 ](%o1) true (%i2)