Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

matrix operaions sums multiplications

조회 수: 1 (최근 30일)
Tiina
Tiina 2014년 12월 27일
마감: MATLAB Answer Bot 2021년 8월 20일
If I have 2 matrices say
B size (100, 2)
A size (100, n)
How to conduct the following operation?
B(1,1) * A(:,1) + B(1,2) * A(:,2)
Then in another column
B(2,1) * A(:,1) + B(2,2) * A(:,2)
And so on , that is each row of B multiplied by A. with loops or without. Thanks
  댓글 수: 1
Image Analyst
Image Analyst 2014년 12월 27일
When do columns 3 to n of A ever get involved in this calculation???

답변 (2개)

Roger Stafford
Roger Stafford 2014년 12월 27일
C = A(:,1:2)*B.';

Shoaibur Rahman
Shoaibur Rahman 2014년 12월 27일
It seems that A(:,3:end) are never used. If that is the case, then you can simply use a for loop:
for k = 1:size(B,1)
out(:,k) = B(k,1)*A(:,1)+B(k,2)*A(:,2);
end

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by