Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4;8 7 6 5;9 0 1 4];
y_correct = (3 + 7 + 4) / 3;
assert(isequal(ave_2ndM(x),y_correct))
ans =
4.6667
|
2 | Pass |
x = [2 4 ;5 9; 0 5;88 52];
y_correct = (2 + 5 + 0 + 52) / 4;
assert(isequal(ave_2ndM(x),y_correct))
ans =
14.7500
|
3 | Pass |
x = [97 93 68 58 24
74 55 49 40 24
63 53 46 37 19];
y_correct = (93 + 55 + 53) / 3;
assert(isequal(ave_2ndM(x),y_correct))
ans =
67
|
4 | Pass |
x = [ 82 65 14 40 44
73 81 18 53 2
15 46 40 42 99
66 44 84 66 17
52 83 81 63 11
98 9 7 30 38];
y_correct = 61.5;
assert(isequal(ave_2ndM(x),y_correct))
ans =
61.5000
|
1223 Solvers
373 Solvers
464 Solvers
155 Solvers
100 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!