Función matricial KRON
Descripción
KRON(A,B) devuelve el producto tensorial de Kronecker de matrices A y B.
Si A es una matriz m × n y B es una matriz p × q, entonces el producto tensorial de Kronecker de A y B es una matriz mp × nq formada al multiplicar cada elemento de A con matriz B.
$$ \mathbf{A}\otimes\mathbf{B} = \begin{bmatrix} a_{11} \mathbf{B} & \cdots & a_{1n}\mathbf{B} \\ \vdots & \ddots & \vdots \\ a_{m1} \mathbf{B} & \cdots & a_{mn} \mathbf{B} \end{bmatrix} $$