Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [ 4 3
5 1
5 1];
y_correct = [4;3;5;1;5;1];
assert(isequal(rearrange2(x),y_correct))
ans =
4
3
5
1
5
1
|
2 | Pass |
x = [ 2 4
1 4
1 2];
y_correct = [2;4;1;4;1;2];
assert(isequal(rearrange2(x),y_correct))
ans =
2
4
1
4
1
2
|
381 Solvers
254 Solvers
327 Solvers
Rotate a matrix for 180 degree
132 Solvers
145 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!