Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1];
y_correct = [0 0 0
0 1 0
0 0 0];
assert(isequal(zeroWrap(x),y_correct))
|
2 | Pass |
x = randi(10,4,5);
m=zeroWrap(x);
assert(isequal(m(2:end-1,2:end-1),x))
|
3 | Pass |
x = randi(10,4,5);
m=zeroWrap(x);
assert(isequal(sum(m(1,:)),0))
|
4 | Pass |
x = randi(10,4,5);
m=zeroWrap(x);
assert(isequal(sum(m(end,:)),0))
|
5 | Pass |
x = randi(10,4,5);
m=zeroWrap(x);
assert(isequal(sum(m(:,1)),0))
|
6 | Pass |
x = randi(10,4,5);
m=zeroWrap(x);
assert(isequal(sum(m(:,end)),0))
|
7 | Pass |
x = randi(10,4,5);
m=zeroWrap(x);
assert(isequal(size(m)-2,size(x)))
|
2980 Solvers
698 Solvers
Magic is simple (for beginners)
2754 Solvers
3067 Solvers
Flip the vector from right to left
2670 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!