matrix multiplication for "3-D" matrices

조회 수: 1 (최근 30일)
MURTY KOMPELLA
MURTY KOMPELLA 2019년 9월 6일
댓글: MURTY KOMPELLA 2019년 9월 6일
i have 8 vectors a11, a12, a21, a22 and b11, b12, b21, b22 let's say of length 1x100. i want to do a*b matrix multiplication for the 2x2 matrices [a11 a12; a21 a22] and [b11 b12; b21 b22] and along the dimension of length 100. how to code this without using do loops?

채택된 답변

Matt J
Matt J 2019년 9월 6일
result=nan(2,2,100);
result(1,1,:)=a11.*b11 + a12.*b21;
result(1,2,:)=a11.*b12 + a12.*b22;
result(2,1,:)=a21.*b11 + a22.*b21;
result(2,2,:)=a21.*b12 + a22.*b22;
  댓글 수: 2
MURTY KOMPELLA
MURTY KOMPELLA 2019년 9월 6일
Matt, thanks very much for your answer so fast! Appreciate it.
Matt J
Matt J 2019년 9월 6일
You're welcome, but please Accept-click the answer if you are satisfied with it.

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

추가 답변 (2개)

Fabio Freschi
Fabio Freschi 2019년 9월 6일
Let's start saying that the data structure you are using is not the best one. See https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval
If you really want to keep that structure, maybe the simplest answer is to make the manual multiplication
C = A*B <- matrix form
c11 = a11*b11+a12*b21 <- element form
since you have array, use .* operator
c11 = a11.*b11+a12.*b21
Note that this works only for 2x2 matrices.
For a more general approach, see
  댓글 수: 4
Fabio Freschi
Fabio Freschi 2019년 9월 6일
If you have data stored in cell arrays, you can use arrayfun
% data
N = 10;
A0 = arrayfun(@(i)rand(2,2),1:N,'UniformOutput',false);
B0 = arrayfun(@(i)rand(2,2),1:N,'UniformOutput',false);
% calculation
C = arrayfun(@(k)A0{k}*B0{k},1:N,'UniformOutput',false)
MURTY KOMPELLA
MURTY KOMPELLA 2019년 9월 6일
Hello Fabio, now (using arrayfun) you are going above my comfort level lol! This is very interesting, let me look into it, Thanks!

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


Catalytic
Catalytic 2019년 9월 6일
If you have the parallel computing toolbox, you can do this on the GPU with
pagefun(@mtimes,A,B)
but this may only provide gains if the pages A(:,:,i) and B(:,:,i) are large matrices.
  댓글 수: 1
MURTY KOMPELLA
MURTY KOMPELLA 2019년 9월 6일
Hello Sir, thanks for your answer. I do not have this toolbox.

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

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by