bdiagMatrix {GDINA} | R Documentation |
Create a block diagonal matrix
Description
Create a block diagonal matrix
Usage
bdiagMatrix(mlist, fill = 0)
Arguments
mlist |
a list of matrices |
fill |
value to fill the non-diagnoal elements |
Value
a block diagonal matrix
See Also
bdiag
in Matrix
Examples
m1 <- bdiagMatrix(list(matrix(1:4, 2), diag(3)))
m2 <- bdiagMatrix(list(matrix(1:4, 2), diag(3)),fill = NA)
[Package GDINA version 2.9.4 Index]