fillout {msos} | R Documentation |
Make a square matrix
Description
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
.
Usage
fillout(z)
Arguments
z |
A |
Value
A square matrix Q \times Q
See Also
Examples
# 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)
[Package msos version 1.2.0 Index]