Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
y = [1 0;0 1];
assert(isequal(M_Const(n),y))
|
2 | Pass |
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 | Pass |
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 | Pass |
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 the numeric mean of the prime numbers in a matrix.
6781 Solvers
Check if number exists in vector
4465 Solvers
Magic is simple (for beginners)
2749 Solvers
309 Solvers
Replace multiples of 5 with NaN
358 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!