Calculates the Kronecker multiplication of two matrices.
The first matrix
The second matrix
const result = Chalkboard.matr.mulKronecker([[1, 2], [3, 4]], [[0, 1], [1, 0]]); // Returns the Kronecker product Copy
const result = Chalkboard.matr.mulKronecker([[1, 2], [3, 4]], [[0, 1], [1, 0]]); // Returns the Kronecker product
Calculates the Kronecker multiplication of two matrices.