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
|
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
|
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
|
given 3 sides, find area of this triangle
680 Solvers
Getting the absolute index from a matrix
211 Solvers
Sum the numbers on the main diagonal
453 Solvers
167 Solvers
Matlab Basics II - Velocity of a particle
138 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!