This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = magic(6);
y_correct = 111;
assert(isequal(sum_of_sec_diag(x),y_correct))
|
2 | Pass |
%%
x = magic(10);
y_correct = 505;
assert(isequal(sum_of_sec_diag(x),y_correct))
|
3 | Pass |
%%
x = magic(11);
y_correct = 671;
assert(isequal(sum_of_sec_diag(x),y_correct))
|
739 Solvers
Reverse the Words (not letters) of a String
297 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3619 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!