Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(7);
y_correct = [30 39 48 10 19 28
38 47 7 18 27 29
46 6 8 26 35 37
13 15 24 42 44 4
21 23 32 43 3 12
22 31 40 2 11 20];
assert(isequal(central_cross(x),y_correct))
x =
30 39 48 10 19 28
38 47 7 18 27 29
46 6 8 26 35 37
5 14 16 34 36 45
13 15 24 42 44 4
21 23 32 43 3 12
22 31 40 2 11 20
|
2 | Pass |
x = magic(3);
y_correct = [8 6
4 2];
assert(isequal(central_cross(x),y_correct))
x =
8 6
3 7
4 2
|
3 | Pass |
x = magic(1);
y_correct = [];
assert(isequal(central_cross(x),y_correct))
x =
1×0 empty double row vector
|
2261 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
2540 Solvers
208 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!