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))
|
2 | Pass |
%%
x=eye(9); n=[1 0];
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
|
3 | Pass |
%%
x=ones(8); n=1;
y_correct = [];
assert(isequal(mat_remove(x,n),y_correct))
|
4 | Pass |
%%
x=spiral(3); n=1;
y_correct = [7 9; 5 3];
assert(isequal(mat_remove(x,n),y_correct))
|
17473 Solvers
Find state names that end with the letter A
708 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Split a string into chunks of specified length
475 Solvers
404 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!