can i do inverse for array in matlab using for ? how ?
Show older comments
x=[1 2 3; 4 5 6; 7 8 9]
1 Comment
Walter Roberson
on 18 Oct 2022
you could program cofactor expansion
Answers (1)
If det(x) ~=0, then matrix is invertable.Your matrix above is not.
x=[1 2 3; 4 5 6; 7 8 -1];
det(x)
r=rref([x,eye(size(x))]);
Xinv=r(1:3,4:6)
x*Xinv
Xinv*x
2 Comments
John D'Errico
on 18 Oct 2022
Note that using det to detemine if a matrix singular is just a bad idea. Use tools like rank, or cond instead.
3lewwi
on 18 Oct 2022
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!