how can i multiply 2 matrices with different dimension ?
Afficher commentaires plus anciens
i have Rr=3*3 matrices and PQRg=3*110 and i want to multiply them and get AnVel=[Rr]*[PQRg]which is 3*110 ? how is possible?
3 commentaires
Walter Roberson
le 25 Oct 2017
Rr * PQRg
would be 3 x 110 under those circumstances, so it is not clear what your question is?
ladan hz
le 26 Oct 2017
Modifié(e) : Walter Roberson
le 26 Oct 2017
Walter Roberson
le 26 Oct 2017
You are overwriting all of AnVel every iteration of the "for" loop. It seems unlikely that is what you want to do.
Réponses (2)
John D'Errico
le 25 Oct 2017
Um, read the getting started tutorials?
AnVel = Rr*PQRg;
It is legal to read the documentation. You might even learn how to use the language.
1 commentaire
ladan hz
le 26 Oct 2017
Modifié(e) : Walter Roberson
le 26 Oct 2017
KSSV
le 25 Oct 2017
YOu can happily multiply them using *.
Rr = rand(3,3) ;
PQRg = rand(3,110) ;
P = Rr*PQRg
Remmember multiplication law?
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!