powered by
This function returns a vector obtained by stacking the lower triangular part of a square matrix.
vech(x)
Let \(\bold{X}\) be a \(n\) by \(n\) matrix, then vech(\(\bold{X}\)) is a \(n(n+1)/2\)-dimensional vector.
vech
a square matrix.
x <- matrix(rep(1:10, each = 10), ncol = 10) x y <- vech(x) y
Run the code above in your browser using DataLab