MATLAB: Tensor product of three matrices

matrix manipulation

I have three matrices A(1:200,1:200), B(1:200,1:200) and C(1:200,1:200) how can i calculate the tensor product of three matrices in matlab.

Best Answer

M = kron(A,kron(B,C))
or
M = kron(kron(A,B),C)
Related Question