Replacing the numbers in a matrix

1 次查看(过去 30 天)
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 个)

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