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))
|
Find the sum of all the numbers of the input vector
31961 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
224 Solvers
343 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!