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))
|
Maximum running product for a string of numbers
1112 Solvers
253 Solvers
620 Solvers
Find last zero for each column
239 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!