kron
Kronecker tensor product.
Syntax
- K = kron(A, B)
Input argument
- A - a matrix: scalars, vectors or matrices.
- B - a matrix: scalars, vectors or matrices.
Output argument
- K - result: Kronecker Tensor Product.
Description
K = kron(A, B) computes the Kronecker tensor product of matrices A and B.
Bibliography
https://en.wikipedia.org/wiki/Kronecker_product
Example
A = [1, 2; 3, 4];
B = [0, 5; 6, 7];
K = kron(A, B)
See also
History
Version | Description |
---|---|
1.0.0 | initial version |
Author
Allan CORNET