Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(sum_diag(x),y_correct))
ans =
1
|
2 | Pass |
x = eye(3);
y_correct = 3;
assert(isequal(sum_diag(x),y_correct))
ans =
3
|
3 | Pass |
x = magic(3);
y_correct = 15;
assert(isequal(sum_diag(x),y_correct))
ans =
15
|
9833 Solvers
Magic is simple (for beginners)
2749 Solvers
315 Solvers
213 Solvers
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!