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

Illustration
Jonathan - 2020-07-20T12:53:56+00:00
Question: what is the most efficient way to set several matrix values to zero ?

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 ?

Expert Answer

Profile picture of John Williams John Williams answered . 2025-11-20

 matrix(ismember(matrix, vec)) = 0


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!