can i do inverse for array in matlab using for ? how ?
Afficher commentaires plus anciens
x=[1 2 3; 4 5 6; 7 8 9]
1 commentaire
Walter Roberson
le 18 Oct 2022
you could program cofactor expansion
Réponses (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 commentaires
John D'Errico
le 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
le 18 Oct 2022
Catégories
En savoir plus sur Loops and Conditional Statements 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!