Vectorize many matrix multiplications using the third dimension

12 ビュー (過去 30 日間)
Alec Poulin
Alec Poulin 2019 年 4 月 17 日
コメント済み: Alec Poulin 2019 年 4 月 25 日
I have collections of matrices, say two collections A and B of n matrices each, implemented as cell arrays. I would like to produce a third collection C by multiplying the matrices from the first two collections:
C = cell(1, n);
for i = 1:n
C{i} = A{i} * B{i};
end
Is it possible instead to use 3D arrays to vectorize this operation? Suppose that A and B are m x m x n arrays, where the ith page (where i ranges from 1 to n) of the arrays are the same as the ith cell in the previous example. Then, is it possible to write something that would look like
C = A * B;
to perform the multiplications in a way that is transparent for the pages of A and B?

採用された回答

James Tursa
James Tursa 2019 年 4 月 17 日
  2 件のコメント
Alec Poulin
Alec Poulin 2019 年 4 月 23 日
Your function does exactly what I need and I was able to compile it without too much trouble. Thank you a lot!
Alec Poulin
Alec Poulin 2019 年 4 月 25 日
Another question: Would there be a way to do the same thing with mldivide? I saw that there are pre-operations available for the matrices, but there is no inverse among them.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by