Member of the vector class.
c = kron(a, b)
Computes the Kronecker tensor product of two matrices, or the product of each element of the first matrix and the second matrix as a whole.
| Name | Description |
| a | Specifies the first matrix. |
| b | Specifies the second matrix. |
| Name | Description |
| c | Returns the Kronecker tensor product of a and b. c is a matrix. |
A = [1, 2; 0, -1]
B = [3, 7, -6, 5]
C = kron(A, B)
D = kron(B, A)