mat.dirsum | R Documentation |
The direct sum is the partitioned matrices whose diagonal submatrices are
the matrices from which the direct sum is to be formed and whose off-diagonal
submatrices are conformable matrices of zeroes. The resulting
matrix
is m \times n
, where m
is the sum of
the numbers of rows of the contributing matrices and n
is the sum of
their numbers of columns.
mat.dirsum(matrices)
matrices |
A list, each of whose component is a |
An m \times n
matrix
.
Chris Brien
mat.dirprod
, matmult
m1 <- matrix(1:4, nrow=2)
m2 <- matrix(11:16, nrow=3)
m3 <- diag(1, nrow=2, ncol=2)
dsum <- mat.dirsum(list(m1, m2, m3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.