This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x =[1 2 3 4;1 2 3 4;1 2 3 4;1 2 3 4];
y_correct =[1 3 2 4;1 3 2 4;1 3 2 4;1 3 2 4];
assert(isequal(swapmid(x),y_correct))
y =
1 3 2 4
1 3 2 4
1 3 2 4
1 3 2 4
|
2 | Pass |
%%
x =[1 2 3 4;5 6 7 8;1 2 3 4;5 6 7 8];
y_correct =[1 3 2 4;5 7 6 8;1 3 2 4;5 7 6 8];
assert(isequal(swapmid(x),y_correct))
y =
1 3 2 4
5 7 6 8
1 3 2 4
5 7 6 8
|
6369 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
Do Fast Fourier Transformation
221 Solvers
369 Solvers
525 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!