This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3];
y_correct = [1.5 2.5];
assert(isequal(two_mean(x),y_correct))
y =
1.5000 2.5000
|
2 | Pass |
%%
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
y =
5 0 0 50
|
1051 Solvers
317 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
find the maximum element of the matrix
348 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!