This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
Mat = [1 2 3; 4 5 6; 7 8 9];
A_correct = [7 8 9; 4 5 6; 1 2 3]
assert(isequal(Filping(Mat),A_correct))
A_correct =
7 8 9
4 5 6
1 2 3
A =
7 8 9
4 5 6
1 2 3
|
2 | Pass |
Mat = magic(5)
A_correct = [11 18 25 2 9;
10 12 19 21 3;
4 6 13 20 22;
23 5 7 14 16;
17 24 1 8 15;]
assert(isequal(Filping(Mat),A_correct))
Mat =
17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9
A_correct =
11 18 25 2 9
10 12 19 21 3
4 6 13 20 22
23 5 7 14 16
17 24 1 8 15
A =
11 18 25 2 9
10 12 19 21 3
4 6 13 20 22
23 5 7 14 16
17 24 1 8 15
|
3 | Pass |
Mat = eye(2,3)
A_correct = [0 1 0;1 0 0]
assert(isequal(Filping(Mat),A_correct))
Mat =
1 0 0
0 1 0
A_correct =
0 1 0
1 0 0
A =
0 1 0
1 0 0
|
Sum all integers from 1 to 2^n
8412 Solvers
283 Solvers
483 Solvers
261 Solvers
Sum positive elements of matrix.
71 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!