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))
|
2 | Pass |
%%
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
|
Read a column of numbers and interpolate missing data
792 Solvers
Back to basics 21 - Matrix replicating
900 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
262 Solvers
357 Solvers
313 Solvers