Problem 498. Find the Kronecker Tensor Product without using KRON

The Kronecker Tensor Product is the result of multiplying all elements of a matrix with each of the elements of another matrix. The result is a large matrix bigger than either input matrix.
If X is m-by-n and Y is p-by-q, then mykron(X,Y) is m*p-by-n*q.
NOTE: n does not need to equal p as with normal matrix multiplication.
EX:
>> a=1:3;
>> b=2:4;
>> mykron(a,b)
ans = 2 3 4 4 6 8 6 9 12

Solution Stats

36.31% Correct | 63.69% Incorrect
Last Solution submitted on Nov 17, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers46

Suggested Problems

More from this Author16

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!