what is the most efficient way to set several matrix values to zero ?

1 vue (au cours des 30 derniers jours)
N/A
N/A le 9 Juil 2020
Hello everyone,
I want to know which is the most efficient way to set a lot of matrix values to zero.
I currently have a 90x90x7613 matrix with several numbers inside that should be set to zero (note: not all of them). The values that should be set two zero are stored inside a vector.
My current approach is this:
for i=1:length(vec)
matrix(matrix==vec(i))=0;
end
Is there a more efficient way to do it ?

Réponse acceptée

madhan ravi
madhan ravi le 9 Juil 2020
matrix(ismember(matrix, vec)) = 0

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by