How I can create this matrix?

조회 수: 1 (최근 30일)
Akash Pal
Akash Pal 2021년 8월 5일
답변: Rik 2021년 8월 5일

채택된 답변

Rik
Rik 2021년 8월 5일
A simple loop with indexing will do the trick. But in this case you can also use the normal matrix multiplication
A=[1 3 0;2 3 3;2 2 5;3 1 6;4 0 4];
B=[1 5 6 2 6 4;3 6 7 4 7 5;5 3 8 5 8 3;5 2 9 6 3 7;6 6 3 2 1 3];
for k=1:size(A,2)
C(:,k)=sum(A(:,k).*B);
end
C
C = 6×3
56 27 88 53 41 69 75 64 127 46 34 81 49 58 83 53 40 84
((A.')*B).'
ans = 6×3
56 27 88 53 41 69 75 64 127 46 34 81 49 58 83 53 40 84

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by