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

조회 수: 1 (최근 30일)
N/A
N/A 2020년 7월 9일
답변: madhan ravi 2020년 7월 9일
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 ?

채택된 답변

madhan ravi
madhan ravi 2020년 7월 9일
matrix(ismember(matrix, vec)) = 0

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by