Matrix function for subtracting and adding numbers from values in a matrix

조회 수: 2 (최근 30일)
I am trying to make a function that focuses on a matrix. I want the function to subtract 4 from any number in the matrix > 4, and then add 1 to each surrounding number in the matrix, until all numbers are < 4
If the matrix = [0 0 0;0 9 0; 0 0 0]
I want it to change to [0 2 0;2 1 2;0 2 0]

채택된 답변

Stephen23
Stephen23 2020년 4월 16일
편집: Stephen23 2020년 4월 16일
M = [0,0,0;0,9,0;0,0,0];
C = [0,1,0;1,-4,1;0,1,0];
while any(M(:)>4)
M = M + conv2(+(M>4),C,'same');
end
  댓글 수: 4
Carter Schultzen
Carter Schultzen 2020년 4월 16일
This solution works for the numbers I proposed, but what could you do differently to make a function that changed worked for any number in the matrix being larger than 4. And then being able to add 1 to the surrounding numbers. Like say M = [0 0 0 0; 0 4 5 2; 0 1 1 0].
While any(M(l:j)>=4
M(l:j) - 4;
M(l-1:j) + 1;
M(l+1:j) + 1;
M(l:j-1) + 1;
M(l:j+1) + 1;
Or something along the lines of that, but I can't get it to work
Stephen23
Stephen23 2020년 4월 17일
편집: Stephen23 2020년 4월 17일
"This solution works for the numbers I proposed but what could you do differently to make a function that changed worked for any number in the matrix being larger than 4"
It already does:
>> M = [0 0 0 0; 0 4 5 2; 0 1 1 0]
M =
0 0 0 0
0 4 5 2
0 1 1 0
>> C = [0,1,0;1,-4,1;0,1,0];
>> while any(M(:)>4), M = M + conv2(+(M>4),C,'same'); end
>> M
M =
0 1 1 0
1 1 2 3
0 2 2 0
So far you have not actually given a specific example of when my code does not work as requested, nor explained why you think it does not work with "any number in the matrix being larger than 4" (even though it does, as shown above), nor have you explained why you think that it only "...works for the numbers I proposed".

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

추가 답변 (0개)

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by