Kronecker tensor product
K = kron(A,B)
K = kron(
returns
the Kronecker
tensor product of matrices A,B
)A
and B
.
If A
is an m
-by-n
matrix
and B
is a p
-by-q
matrix,
then kron(A,B)
is an m*p
-by-n*q
matrix
formed by taking all possible products between the elements of A
and
the matrix B
.