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))
a =
2
b =
1
x =
1 6
9 2
|
2 | Pass |
%%
x=eye(9); n=[1 0];
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
a =
1
2
3
4
5
6
7
8
9
b =
1
2
3
4
5
6
7
8
9
x =
[]
|
3 | Pass |
%%
x=ones(8); n=1;
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
a =
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
1
2
3
4
5
6
7
8
b =
1
1
1
1
1
1
1
1
2
2
2
2
2
2
2
2
3
3
3
3
3
3
3
3
4
4
4
4
4
4
4
4
5
5
5
5
5
5
5
5
6
6
6
6
6
6
6
6
7
7
7
7
7
7
7
7
8
8
8
8
8
8
8
8
x =
[]
|
4 | Pass |
%%
x=spiral(3); n=1;
y_correct = [7 9; 5 3];
assert(isequal(mat_remove(x,n),y_correct))
a =
2
b =
2
x =
7 9
5 3
|
9833 Solvers
3113 Solvers
Remove the polynomials that have positive real elements of their roots.
629 Solvers
420 Solvers
2314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!