Back to Linear Algebra
kron
Kronecker tensor product
Syntax
K = kron(A, B)
Description
Computes the Kronecker product of two matrices. Each element of A is multiplied by the entire matrix B.
Parameters
| Name | Description |
|---|---|
| A | First input matrix |
| B | Second input matrix |
Returns
Kronecker product matrix
Examples
Try It
>> kron([1 0; 0 1], [1 2; 3 4])