fillout {msos} | R Documentation |
The function fillout takes a Q \times (Q - L)
matrix Z
and fills it out so that it is a square matrix Q \times Q
.
fillout(z)
z |
A |
A square matrix Q \times Q
# Create a 3 x 2 matrix
a <- cbind(c(1, 2, 3), c(4, 5, 6))
# Creates a 3 x 3 Matrix from 3 x 2 Data
fillout(a)