How to multiply two matrices with nested for loops ?
이전 댓글 표시
How can I do that with two matrices with any dimensions that can multiply ? Thank you
댓글 수: 1
kale jabbar
2018년 2월 11일
편집: kale jabbar
2018년 2월 11일
A=input
b=input
c=[ ]
R=size(A)
G=size(b)
n=R(1)
m=G(2)
for i=1:n
for j=1:m
c(i,j)=A(i,:)*b(:,j)
end
end
c
채택된 답변
추가 답변 (2개)
pallab
2025년 1월 9일
0 개 추천
write a user define matrix multiplication function using if and for loop
댓글 수: 1
Walter Roberson
2025년 1월 9일
Well, you certainly can do that, but you have not explained how to do that, and so this answer is not at all useful in answering the question posed of how to write such code.
I admit to being rather unclear as to the benefit of using "if" statements in the matrix multiplication code? I can see using "if" in the initial tests to verify matrix size compatibility though.
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!