multiplication of multiple type matrices
4 次查看(过去 30 天)
显示 更早的评论
Hello,
Can someone help me. I alredy forgot about order of matrices in mathematics. What i want to ask is about multiplication of multiple matrices. For example this is the formula . Can someone help me construct the calculation for this formula and explain to me. The dimension for A is a 2x2.
The answer that i get when i multiply all parameter at the same time (example E=A*B*C*D) it get different when i multiply one-by-one (example AB=A*B then ABC=AB*C then ABCD=A*B*C*D). Can someone help me?
0 个评论
回答(1 个)
James Tursa
2021-1-21
编辑:James Tursa
2021-1-21
Matrix multiplication is associative, so the order of the multiplication doesn't matter mathematically. You might get small differences due to numerical effects. If you are getting something vastly different then maybe you can show us the exact code you are using and we can comment on it.
That being said, if A is 2x2 then the inverse of will only exist if A is full rank. And if that is the case then your equation reduces to alpha = [dx dy]*inv(A), in which case maybe you should be doing this instead: alpha = [dx dy]/A
Are you sure about the dimensions of A?
另请参阅
类别
在 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!