Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = magic(3); n=3;
y_correct = [1 6; 9 2];
assert(isequal(mat_remove(x,n),y_correct))
ans =
1 1 1
0 1 1
1 1 1
|
2 | Pass |
%%
x=eye(9); n=[1 0];
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
ans =
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
|
3 | Pass |
%%
x=ones(8); n=1;
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
ans =
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
|
4 | Pass |
%%
x=spiral(3); n=1;
y_correct = [7 9; 5 3];
assert(isequal(mat_remove(x,n),y_correct))
ans =
1 1 1
1 0 1
1 1 1
|
Back to basics 23 - Triangular matrix
634 Solvers
Implement simple rotation cypher
943 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Reverse the elements of an array
687 Solvers
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!