Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
y = [1 0;0 1];
assert(isequal(M_Const(n),y))
|
2 | Fail |
n = 4;
y = [1 2 0 0
1 2 0 0;
0 0 2 1
0 0 2 1];
assert(isequal(M_Const(n),y))
|
3 | Fail |
n = 6;
y = [1 2 3 0 0 0
1 2 3 0 0 0
1 2 3 0 0 0
0 0 0 3 2 1
0 0 0 3 2 1
0 0 0 3 2 1];
assert(isequal(M_Const(n),y))
|
4 | Fail |
n = 8;
y = [ 1 2 3 4 0 0 0 0
1 2 3 4 0 0 0 0
1 2 3 4 0 0 0 0
1 2 3 4 0 0 0 0
0 0 0 0 4 3 2 1
0 0 0 0 4 3 2 1
0 0 0 0 4 3 2 1
0 0 0 0 4 3 2 1];
assert(isequal(M_Const(n),y))
|
Find common elements in matrix rows
1231 Solvers
405 Solvers
284 Solvers
274 Solvers
405 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!