Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
A = [1 2 3; 4 5 6];
n = 2;
B_correct = [1 3; 4 6];
assert(isequal(column_removal(A,n),B_correct))
B =
-1 0 1
-1 0 1
|
2 | Fail |
A = magic(4);
n = 3;
B = [16 2 13;
5 11 8;
9 7 12;
4 14 1];
B_correct = B;
assert(isequal(column_removal(A,n),B_correct))
B =
13 -1 0 10
-5 1 0 -2
3 1 0 6
-11 -1 0 -14
|
3 | Fail |
A = 1:10;
n = 7;
B_correct = [1 2 3 4 5 6 8 9 10];
assert(isequal(column_removal(A,n),B_correct))
B =
-6 -5 -4 -3 -2 -1 0 1 2 3
|
594 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Arrange vector in ascending order
624 Solvers
724 Solvers
2625 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!