Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 1;
5 6 7;
2 3 6];
output = [1 1 1;
1 1 1;
1 1 1]
assert(isequal(neighbors(x),output))
output =
1 1 1
1 1 1
1 1 1
|
2 | Pass |
x = [8 8 8;
4 4 4;
1 9 7]
output = [1 1 1;
1 1 1;
0 0 0]
assert(isequal(neighbors(x),output))
x =
8 8 8
4 4 4
1 9 7
output =
1 1 1
1 1 1
0 0 0
|
3 | Pass |
x = [1 8 5;
4 10 22;
1 66 7]
output = [0 0 0;
0 0 0;
0 0 0]
assert(isequal(neighbors(x),output))
x =
1 8 5
4 10 22
1 66 7
output =
0 0 0
0 0 0
0 0 0
|
785 Solvers
1598 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
325 Solvers
Count decimal digits of a number
176 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!