toeplitz
Form Symmetric Toeplitz Matrix
Forms a symmetric Toeplitz matrix given its first row.
- Keywords
- ts
Usage
toeplitz(x, ...)
Arguments
- x
- the first row to form the Toeplitz matrix.
- ...
- potential further arguments (for methods); none here.
Value
-
The Toeplitz matrix.
Examples
library(stats)
x <- 1:5
toeplitz (x)
Community examples
Looks like there are no examples yet.