multiplication of multiple type matrices
이전 댓글 표시
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?
답변 (1개)
James Tursa
2021년 1월 21일
편집: James Tursa
2021년 1월 21일
0 개 추천
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?
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!