This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [9 7 10;
10 1 10;
2 3 2;
10 6 10];
y_correct = 80;
assert(isequal(sum_array(x),y_correct))
ans =
80
|
2 | Pass |
x = [4 8 7 2 9;
6 9 8 3 6;
7 6 5 5 8;
5 4 1 6 7;
9 2 3 5 5];
y_correct = 140;
assert(isequal(sum_array(x),y_correct))
ans =
140
|
Omit columns averages from a matrix
527 Solvers
316 Solvers
348 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
4999 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!