Problem with sparse matrix - HELP

2 次查看(过去 30 天)
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,

采纳的回答

Cedric
Cedric 2013-10-16
编辑:Cedric 2013-10-16
[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 个评论
rodrigo
rodrigo 2013-10-16
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 2013-10-16
编辑:Cedric 2013-10-16
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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Sparse Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by