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!