Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 4;
y_correct = [0 1 2 3 4; -1 0 1 2 3; -2 -1 0 1 2; -3 -2 -1 0 1; -4 -3 -2 -1 0];
assert(isequal(gen_mat(x),y_correct))
|
2 | Pass |
x = 6;
y_correct = [0 1 2 3 4 5 6;
-1 0 1 2 3 4 5;
-2 -1 0 1 2 3 4;
-3 -2 -1 0 1 2 3;
-4 -3 -2 -1 0 1 2;
-5 -4 -3 -2 -1 0 1;
-6 -5 -4 -3 -2 -1 0];
assert(isequal(gen_mat(x),y_correct))
|
3 | Pass |
x = 0;
y_correct = 0;
assert(isequal(gen_mat(x),y_correct))
|
4 | Pass |
x = [];
y_correct = [];
assert(isequal(gen_mat(x),y_correct))
|
3113 Solvers
2334 Solvers
231 Solvers
251 Solvers
Create a square matrix of zeros of even order
108 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!