How to Multiplying matrices using for loops

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!

Antworten (1)

Walter Roberson
Walter Roberson am 16 Sep. 2016

0 Stimmen

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 Kommentare

Mark  Hodges
Mark Hodges am 16 Sep. 2016
My apologies, I didn't mean to add that, it's fixed
Walter Roberson
Walter Roberson am 16 Sep. 2016
https://en.wikipedia.org/wiki/Matrix_multiplication#General_definition_of_the_matrix_product

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 16 Sep. 2016

Kommentiert:

am 16 Sep. 2016

Community Treasure Hunt

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

Start Hunting!

Translated by