Matrix division does not work because of matrix dimensions

조회 수: 3 (최근 30일)
Hadi Ghahremannezhad
Hadi Ghahremannezhad 2019년 11월 21일
댓글: Ridwan Alam 2019년 11월 21일
I have two matrices:
A: 5 by 5
B: 5 by 3
How can I claculate matrix division as B divided by A?
I have used:
B / A
B \ A
B ./ A
But all of them show this message:
"Matrix dimensions must agree."

채택된 답변

Ridwan Alam
Ridwan Alam 2019년 11월 21일
편집: Ridwan Alam 2019년 11월 21일
B\A gives a warning, but not an error.
B\A means inv(B)*A. But your B is not square, so inv(B) won't work.
And, you are not looking for A\B?
  댓글 수: 4
Hadi Ghahremannezhad
Hadi Ghahremannezhad 2019년 11월 21일
But there are weird numbers in the result:
41.8515350877193 -1.69864901616146e-17 0.500000000000006
-13.9838450292398 43.6678217821782 0.500000000000000
-13.9838450292398 -1.66902048510060e-17 -43.1678217821782
-13.9838450292398 -43.6678217821782 0.499999999999989
-13.9838450292398 -1.27074865530056e-17 44.1678217821782
Ridwan Alam
Ridwan Alam 2019년 11월 21일
what's your A and B? maybe share the code?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by