필터 지우기
필터 지우기

Replacing the numbers in a matrix

조회 수: 1 (최근 30일)
mcl1993
mcl1993 2017년 4월 11일
댓글: mcl1993 2017년 4월 11일
I have a matrix of numbers (22 x 22). Some of the numbers in the cells are zero. If the cell contains a zero, I want to replace in the numbers in the cells directly above, below, to the right and left also with a zero.

채택된 답변

Jan
Jan 2017년 4월 11일
편집: Jan 2017년 4월 11일
Do you mean all 8 surrounding elements?
x = randi([0,5], 22, 22); % Example data
Z = conv2(double(x == 0), ones(3, 3), 'same');
x(Z ~= 0) = 0;
If you mean the 4 neighbors without the diagonals:
Z = conv2(double(x == 0), [0,1,0; 1,0,1; 0,1,0], 'same');
x(Z ~= 0) = 0;
  댓글 수: 1
mcl1993
mcl1993 2017년 4월 11일
I meant the 4 neighbours without the diagonals, thanks!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2017년 4월 11일
편집: Andrei Bobrov 2017년 4월 11일
Let A - your array [22 x 22]
A(bwdist(A==0) <= 1) = 0

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by