powered by
This function constructs an order n Toeplitz matrix from the values in the order 2 * n - 1 vector x.
toeplitz.matrix(n, x)
An order n matrix.
a positive integer value for order of matrix greater than 1
a vector of values used to construct the matrix
Frederick Novomestky fnovomes@poly.edu
The element T[i,j] in the Toeplitz matrix is x[i-j+n].
T[i,j]
x[i-j+n]
Monahan, J. F. (2011). Numerical Methods of Statistics, Cambridge University Press.
T <- toeplitz.matrix( 4, seq( 1, 7 ) ) print( T )
Run the code above in your browser using DataLab