Tensor product of three matrices

8 views (last 30 days)
naeem akhtar
naeem akhtar on 26 Mar 2019
Edited: Torsten on 26 Mar 2019
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.

Accepted Answer

Torsten
Torsten on 26 Mar 2019
Edited: Torsten on 26 Mar 2019
M = kron(A,kron(B,C))
or
M = kron(kron(A,B),C)

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!