This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = [1 2 3];
y_correct = [1.5 2.5];
assert(isequal(two_mean(x),y_correct))
Error: Matrix dimensions must agree.
|
2 | Fail |
%%
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
Error: Matrix dimensions must agree.
|
36191 Solvers
4830 Solvers
686 Solvers
151 Solvers
395 Solvers