How can I multiply N dimensional matrices

조회 수: 30 (최근 30일)
Zoja Selimi
Zoja Selimi 2020년 7월 16일
댓글: James Tursa 2020년 9월 17일
I am trying to multiply a 3x3xn matrix with a 3x4xn matrix.
I tried a for loop but it says that the matrix dimensions do not agree.
The new matrix that I need is just the product of the first A(:,:,i)*B(:,:,i) which should work but in my case it isn't

채택된 답변

KSSV
KSSV 2020년 7월 16일
C = zeros(3,4,n) ;
for i = 1:n
C(:,:,i) = A(:,:,i)*B(:,:,i) ;
end

추가 답변 (2개)

James Tursa
James Tursa 2020년 7월 16일
편집: James Tursa 2020년 7월 16일

Steven Lord
Steven Lord 2020년 9월 17일
See the pagemtimes function introduced in release R2020b.
  댓글 수: 1
James Tursa
James Tursa 2020년 9월 17일
Finally! Guess I can now stop worrying about updating MTIMESX.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by