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))
x =
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
ans =
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
|
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))
x =
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
ans =
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
|
3 | Pass |
x = 0;
y_correct = 0;
assert(isequal(gen_mat(x),y_correct))
x =
0
ans =
0
|
4 | Pass |
x = [];
y_correct = [];
assert(isequal(gen_mat(x),y_correct))
ans =
[]
|
Select every other element of a vector
20337 Solvers
238 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
2770 Solvers
156 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!