Calculates the Kronecker addition of two matrices.
The first matrix
The second matrix
const result = Chalkboard.matr.addKronecker([[1, 0], [0, 1]], [[0, 1], [1, 0]]); // Returns the Kronecker sum Copy
const result = Chalkboard.matr.addKronecker([[1, 0], [0, 1]], [[0, 1], [1, 0]]); // Returns the Kronecker sum
Calculates the Kronecker addition of two matrices.