Hello All!
Well I found this one fun to figure out, all you have to do is make a matrix of 1's or 0's (true or false) that show whether or not a number in a matrix is sitting directly next to (a neighbor) that is number that is +1 or -1 or == to that of the original number. Here are some examples:
M1 = [1 2 1;
5 6 7;
2 3 6]
SO now find numbers next to one another that are +1 of each-other.
output = [1 1 1;
1 1 1;
1 1 1]
One more:
M2 = [8 8 8;
4 4 4;
1 9 7]
SO now find numbers next to one another that are +1 of each-other.
output = [1 1 1;
1 1 1;
0 0 0]
One more:
M3 = [1 8 5;
4 10 22;
1 66 7]
SO now find numbers next to one another that are +1 of each-other.
output = [0 0 0;
0 0 0;
0 0 0]
Well good luck!
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers84
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15777 Solvers
-
Find the peak 3n+1 sequence value
2564 Solvers
-
Calculate the Levenshtein distance between two strings
1506 Solvers
-
How to find the position of an element in a vector without using the find function
2810 Solvers
-
Similar Triangles - find the height of the tree
464 Solvers
More from this Author17
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good problem. You should generalise it with more tests (size of the matrix, different gap...).
I suspect that my solution isn't correct.