toep.mult | R Documentation |
Efficient matrix multiplication with Toeplitz matrix and arbitrary matrix or vector.
toep.mult(acf, X)
acf |
Length- |
X |
Vector or matrix of compatible dimensions with |
An N
-row matrix corresponding to toeplitz(acf) %*% X
.
N <- 20
d <- 3
acf <- exp(-(1:N))
X <- matrix(rnorm(N*d), N, d)
toep.mult(acf, X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.