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))
|
2 | Pass |
x = magic(3);
y_correct = [8 6
4 2];
assert(isequal(central_cross(x),y_correct))
|
3 | Pass |
x = magic(1);
y_correct = [];
assert(isequal(central_cross(x),y_correct))
|
2183 Solvers
927 Solvers
Sum all integers from 1 to 2^n
8419 Solvers
Who knows the last digit of pi?
557 Solvers
Deleting an element in a matrix
325 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!