Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [1 2 3; 4 5 6];
n = 2;
B_correct = [1 3; 4 6];
assert(isequal(column_removal(A,n),B_correct))
r =
2
c =
3
p =
1
B =
1
p =
2
B =
1 3
p =
3
p =
1
B =
1 3
4 0
p =
2
B =
1 3
4 6
p =
3
p =
1
|
2 | Pass |
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))
r =
4
c =
4
p =
1
B =
16
p =
2
B =
16 2
p =
3
B =
16 2 13
p =
4
p =
1
B =
16 2 13
5 0 0
p =
2
B =
16 2 13
5 11 0
p =
3
B =
16 2 13
5 11 8
p =
4
p =
1
B =
16 2 13
5 11 8
9 0 0
p =
2
B =
16 2 13
5 11 8
9 7 0
p =
3
B =
16 2 13
5 11 8
9 7 12
p =
4
p =
1
B =
16 2 13
5 11 8
9 7 12
4 0 0
p =
2
B =
16 2 13
5 11 8
9 7 12
4 14 0
p =
3
B =
16 2 13
5 11 8
9 7 12
4 14 1
p =
4
p =
1
|
3 | Pass |
A = 1:10;
n = 7;
B_correct = [1 2 3 4 5 6 8 9 10];
assert(isequal(column_removal(A,n),B_correct))
r =
1
c =
10
p =
1
B =
1
p =
2
B =
1 2
p =
3
B =
1 2 3
p =
4
B =
1 2 3 4
p =
5
B =
1 2 3 4 5
p =
6
B =
1 2 3 4 5 6
p =
7
B =
1 2 3 4 5 6 8
p =
8
B =
1 2 3 4 5 6 8 9
p =
9
B =
1 2 3 4 5 6 8 9 10
p =
10
p =
1
|
Remove the polynomials that have positive real elements of their roots.
629 Solvers
Check to see if a Sudoku Puzzle is Solved
278 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Back to basics 9 - Indexed References
392 Solvers
376 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!