Tensor product of three matrices

8 次查看(过去 30 天)
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.

采纳的回答

Torsten
Torsten 2019-3-26
编辑:Torsten 2019-3-26
M = kron(A,kron(B,C))
or
M = kron(kron(A,B),C)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by