problem with inversion of a matrix
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, I need to do an inversion of N=(B*(R)^(-1)*B')^(-1). B->12x4 R->4x4, as a result my matlab gives me matrix 1x1. The problem is the last inversion, because without it as a result is matrix 12x12. Could anyone help me?
6 Commenti
John D'Errico
il 29 Giu 2017
Modificato: John D'Errico
il 29 Giu 2017
READ MY ANSWER! You don't get an inverse, because the inverse of a singular matrix does not exist. Just wanting to compute something that does not exist is a problem, and a problem that cannot be solved. At best you can compute a pseudo-inverse.
Risposte (1)
John D'Errico
il 29 Giu 2017
So what is the problem? Let me guess, the inverse you are trying to compute does not exist?
You state:
N=(B*(R)^(-1)*B')^(-1). B->12x4 R->4x4
The intermediate result of
B*(R)^(-1)*B'
is indeed a 12x12 matrix. But it is a matrix that has rank 4 at the very most. That is a given (linear algebra 101).
The inverse of a 12x12 rank 4 matrix does not exist. The matrix is singular, and a singular matrix has no inverse.
So for whatever reason you think you need to do this, you are wrong.
We don't know what the purpose of this expression you are trying to compute. Can a pseudo-inverse (help pinv) satisfy your needs? How can we know? The one thing that I do know is that trying to compute the inverse is not going to be a success.
0 Commenti
Vedere anche
Categorie
Scopri di più su Linear Algebra in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!