How to Multiplying matrices using for loops
조회 수: 13 (최근 30일)
이전 댓글 표시
I have to write a MATLAB code using for-loops to perform multiplication of both matrices. Not sure how to do this using for loops but A = [3 4 1; 1 2 3] B = [1 2 3; 4 5 6; 7 8 9] Need to Find A*B
Thanks everyone!
댓글 수: 0
답변 (1개)
Walter Roberson
2016년 9월 16일
A.*B is not defined between matrices of difference sizes. It is not possible to write code for it.
The .* (otherwise known as times) operator is for element-by-element multiplication. If you are looking for algebraic matrix multiplication then the operator to read about is * (otherwise known as mtimes)
댓글 수: 2
Walter Roberson
2016년 9월 16일
https://en.wikipedia.org/wiki/Matrix_multiplication#General_definition_of_the_matrix_product
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!