A nice opportunity to use toeplitz :)
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = (1:5)';
y_correct = [1 5 4 3 2;2 1 5 4 3;3 2 1 5 4;4 3 2 1 5;5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
2 | Pass |
x = (1:3)';
y_correct = [1 3 2;2 1 3;3 2 1];
assert(isequal(shifted(x),y_correct))
|
3 | Pass |
x = (1:4)';
y_correct = [1 4 3 2;2 1 4 3;3 2 1 4;4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
4 | Pass |
x = (1:7)';
y_correct = [1 7 6 5 4 3 2;2 1 7 6 5 4 3;3 2 1 7 6 5 4;...
4 3 2 1 7 6 5;5 4 3 2 1 7 6; 6 5 4 3 2 1 7; 7 6 5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
5 | Pass |
x = (1:6)';
y_correct = [1 6 5 4 3 2;2 1 6 5 4 3;3 2 1 6 5 4;...
4 3 2 1 6 5;5 4 3 2 1 6; 6 5 4 3 2 1];
assert(isequal(shifted(x),y_correct))
|
187 Solvers
328 Solvers
The Answer to Life, the Universe, and Everything
312 Solvers
167 Solvers
Back to basics - mean of corner elements of a matrix
235 Solvers