How to quickly find the minimal number of rows in a sparse matrix to form a full-rank sub-matrix?

2 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Devineni Aslesha
Devineni Aslesha il 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.

Più risposte (0)

Categorie

Scopri di più su Sparse Matrices in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by