|
Contents | Previous | Next | Subchapters |
| Syntax |
v = vander(c) |
| See Also |
polyfittoeplitz |
n x n matrix
with the same type as c where n is the
length of c.
The (i,j)-th element of v is given by
n-j
v = c
i,j i
c = [ 1 , 2 , 3 ]
vander(c)
O-Matrix will reply
{
[ 1 , 1 , 1 ]
[ 4 , 2 , 1 ]
[ 9 , 3 , 1 ]
}