- ‘pinv’ requires costly SVD.
- ‘pinv’ does not work with sparse matrix.
Computing generalized Inverse of a square but sparse matrix?
31 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sanwar Ahmad
le 16 Déc 2020
Réponse apportée : Christine Tobler
le 8 Jan 2021
I am trying to find the generalized inverse of a square and sparse matrix. I am using Matlab, however pinv(matrix) doesn't work for sparse matrices. If you have any suggestion or algorithm, please share. Thanks in advance.
0 commentaires
Réponse acceptée
Rishabh Mishra
le 21 Déc 2020
Hi,
The disadvantages of using ‘pinv’ to find inverse of sparse matrix are:
Instead, you can use the function ‘pseudo-inverse’ for the same purpose. Refer the following link for documentation of ‘pseudo-inverse’ function.
Hope this helps!
0 commentaires
Plus de réponses (1)
Christine Tobler
le 8 Jan 2021
If you want to apply pinv(A)*b, you can instead use lsqminnorm(A, b), which also works for sparse matrices and does something equivalent (using QR decomposition instead of SVD).
0 commentaires
Voir également
Catégories
En savoir plus sur Linear Algebra dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!