Effacer les filtres
Effacer les filtres

Problem with sparse matrix - HELP

2 vues (au cours des 30 derniers jours)
rodrigo
rodrigo le 16 Oct 2013
Commenté : Cedric le 16 Oct 2013
Hello all,
Supose that H = sparse(i,j,s),
where i,j,s is an arrays of values with index of row, index of columns and the value of each position.
Then, i will get the sparse matrix.
But my question is: how can i get the vectors i,j,s from an sparse matrix, or even from the correspondent full matrix !
Thanks in advance,

Réponse acceptée

Cedric
Cedric le 16 Oct 2013
Modifié(e) : Cedric le 16 Oct 2013
[i,j,s] = find( H ) ;
Note that most often, when building a sparse matrix with vectors of indices/values, it is relevant to specify the size of the matrix:
H = sparse(i, j, s, m, n) ;
otherwise you might get a matrix which doesn't have the appropriate dimension for further computations.
  2 commentaires
rodrigo
rodrigo le 16 Oct 2013
Thanks Cedric.
By the way, how can i maintain the zeros of my matrix in vector s and the correspondent indexes in vectors i and j ?
Cedric
Cedric le 16 Oct 2013
Modifié(e) : Cedric le 16 Oct 2013
You're welcome.
What is the purpose of maintaining zeros? This is precisely what we are trying to avoid when using sparse matrices. Could you describe a bit in which context you need these zeros? If you want to have a vector with all elements of the matrix, just use linear indexing or reshape, e.g.
>> H = randi( 10, 2, 3 )
H =
9 2 7
10 10 1
>> s = H(:)
s =
9
10
2
10
7
1
Note that if s contains all values, you don't need indices. The only thing that you need is to know the initial size (or even just the number of rows or columns and not both) of the matrix (and understand that MATLAB stores numeric arrays column first); using the size and s, you can reshape s into the original matrix:
>> H2 = reshape( H, 2, [] )
H2 =
9 2 7
10 10 1

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Sparse Matrices 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!

Translated by