Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('diagonalPattern.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
2 | Pass |
n = 1;
mat_correct = 0;
assert(isequal(diagonalPattern(n),mat_correct))
mat =
0
|
3 | Pass |
n = -1;
mat_correct = [];
assert(isequal(diagonalPattern(n),mat_correct))
mat =
[]
|
4 | Pass |
n = 1.5;
mat_correct = [];
assert(isequal(diagonalPattern(n),mat_correct))
mat =
[]
|
5 | Pass |
n = 4;
mat_correct = [0 1 2 3
1 0 1 2
2 1 0 1
3 2 1 0];
assert(isequal(diagonalPattern(n),mat_correct))
mat =
0
mat =
0 1
mat =
0 1 2
mat =
0 1 2 3
mat =
0 1 2 3
1 0 0 0
mat =
0 1 2 3
1 0 0 0
mat =
0 1 2 3
1 0 1 0
mat =
0 1 2 3
1 0 1 2
mat =
0 1 2 3
1 0 1 2
2 0 0 0
mat =
0 1 2 3
1 0 1 2
2 1 0 0
mat =
0 1 2 3
1 0 1 2
2 1 0 0
mat =
0 1 2 3
1 0 1 2
2 1 0 1
mat =
0 1 2 3
1 0 1 2
2 1 0 1
3 0 0 0
mat =
0 1 2 3
1 0 1 2
2 1 0 1
3 2 0 0
mat =
0 1 2 3
1 0 1 2
2 1 0 1
3 2 1 0
mat =
0 1 2 3
1 0 1 2
2 1 0 1
3 2 1 0
|
6 | Pass |
n = 5;
mat_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(diagonalPattern(n),mat_correct))
mat =
0
mat =
0 1
mat =
0 1 2
mat =
0 1 2 3
mat =
0 1 2 3 4
mat =
0 1 2 3 4
1 0 0 0 0
mat =
0 1 2 3 4
1 0 0 0 0
mat =
0 1 2 3 4
1 0 1 0 0
mat =
0 1 2 3 4
1 0 1 2 0
mat =
0 1 2 3 4
1 0 1 2 3
mat =
0 1 2 3 4
1 0 1 2 3
2 0 0 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 0 0 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 0 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 1 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 1 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 1 0 1
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 1 0 1
4 0 0 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 1 0 1
4 3 0 0 0
mat =
0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 1 0 1
4 3 2 0 0
mat =
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
mat =
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
|
Find the sum of all the numbers of the input vector
25618 Solvers
1786 Solvers
894 Solvers
Make a run-length companion vector
453 Solvers
Matlab Basics - Absolute Value
272 Solvers