Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
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))
|
Back to basics 19 - character types
225 Solvers
Check if number exists in vector
4465 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
264 Solvers
Find out value of sine given by degree.
231 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!