Computing A(:, m)*B(m, :) without a for loop

1 回表示 (過去 30 日間)
Nicolas Perez
Nicolas Perez 2018 年 11 月 12 日
コメント済み: Nicolas Perez 2018 年 11 月 12 日
Provided I have two matrices A and B of dimensions NxM and MxN I want to compute a matrix C of dimensions NxNxM such that each NxN slice is the result of the prduct A(:, m)*B(m, :). I know this can be obtained in the following way:
for m=1:M
C(:, :, m) = A(:, m)*B(m, :);
end
Is there a way of obtaining the same result without using a for loop (with the aim of making the computation faster)?

採用された回答

Matt J
Matt J 2018 年 11 月 12 日
Ar=reshape(A,N,1,[]);
Br=reshape(B.',1,N,[]);
C=Ar.*Br;

その他の回答 (1 件)

madhan ravi
madhan ravi 2018 年 11 月 12 日
C(:, :, 1:M) = A(:, 1:M)*B(1:M, :);
  1 件のコメント
Nicolas Perez
Nicolas Perez 2018 年 11 月 12 日
The output of A(:, 1:M)*B(1:M, :); is the sum of C(:, :, 1:M) along the third dimension (an NxN matrix). Thus, you get the "Assignment has fewer non-singleton rhs dimensions than non-singleton subscripts" error.

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

カテゴリ

Help Center および File ExchangeChemistry についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by