Creates a KronMatrix that stores the factor
matrices A and B without materializing the full
Kronecker product. Standard operations such as %*%,
crossprod, solve, and determinant are
available and exploit the Kronecker structure.
Arguments
- A
Numeric matrix or object coercible via
as.matrix(); the left Kronecker factor.- B
Numeric matrix or object coercible via
as.matrix(); the right Kronecker factor.
Value
A KronMatrix of implicit dimensions
c(nrow(A) * nrow(B), ncol(A) * ncol(B)).