How to quickly find the minimal number of rows in a sparse matrix to form a full-rank sub-matrix?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Benson Gou
le 19 Mar 2020
Réponse apportée : Devineni Aslesha
le 23 Mar 2020
Dear All,
I have a big sparse matrix A. For a given row, is it possible for me to find the minimal number of rows in A to form a full-rank sub-matrix (zero columns are deleted if zero-columns exist)?
For example, A = [0 0 1 0 3;0 2 6 0 0;1 0 5 3 1;0 2 1 4 0;-4 0 0 5 1;3 0 0 0 0;5 0 0 2 0;0 1 0 3 4].
1). For the given row #7, row #6 can form a sub-matrix with row #7.
rows_6_7 = [3 0 0 0 0;5 0 0 2 0]. Delet the zero columns, we have submatrix = [3 0; 5 2].
2). Given row #2, we can find 4 rows to form a full-rank submatrix. selected_rows = [0 2 6 0 0;0 2 1 4 0;0 1 0 3 4;0 0 1 0 3]. Submatrix = [2 6 0 0;2 1 4 0;1 0 3 4;0 1 0 3].
Thanks a lot.
Benson
0 commentaires
Réponse acceptée
Devineni Aslesha
le 23 Mar 2020
Here is a similar question for your reference to find the minimal number of rows in a sparse matrix to form a full-rank sub-matrix.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Denoising and Compression 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!