Tensor product of three matrices

16 ビュー (過去 30 日間)
naeem akhtar
naeem akhtar 2019 年 3 月 26 日
編集済み: Torsten 2019 年 3 月 26 日
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 Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by