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
|
Extract leading non-zero digit
1205 Solvers
Getting the absolute index from a matrix
211 Solvers
07 - Common functions and indexing 3
317 Solvers
Sum of odd numbers in a matrix
311 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!