How can i extract the value of an element of a sparse double?

41 vues (au cours des 30 derniers jours)
Odin Iversen
Odin Iversen le 18 Oct 2020
Commenté : Rik le 18 Oct 2020
if i have a sparse duble:
M = zeros(3);
M = sparse(M);
M(3,3) = 2;
and i want to get only the value of M(3,3) = 2, how do i do that?
if i type:
M(3,3)
i get:
ans =
(1,1) 2
but i want to somheow get:
ans =
2
converting to full matrix is not an option since the actual matrix is 50000 x 50000. thank you

Réponse acceptée

Bruno Luong
Bruno Luong le 18 Oct 2020

Plus de réponses (2)

Rik
Rik le 18 Oct 2020
You can convert the result to a full matrix. Indexing only extracts part of the array, but doesn't influence the sparse property.
  2 commentaires
Odin Iversen
Odin Iversen le 18 Oct 2020
so like this:
full(M(3,3))
this only converts that one element to full and not the whole M-matrix in the process?
Rik
Rik le 18 Oct 2020
Exactly, which is probably why you accepted Bruno's answer.

Connectez-vous pour commenter.


Ameer Hamza
Ameer Hamza le 18 Oct 2020
Or maybe this
M(3,3)+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