Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1, 5, 6, 8, 9, 15];
y_correct = [3, 5.5, 7, 8.5, 12] ;
assert(isequal(pair_mean(x),y_correct))
y =
[]
|
2 | Pass |
x = [4 5 21 6 2 1 6 63];
y_correct = [4.5, 13, 13.5, 4, 1.5, 3.5, 34.5] ;
assert(isequal(pair_mean(x),y_correct))
y =
[]
|
3 | Pass |
x = [1 1 1 0 0 1 0 1];
y_correct = [1.0000 1.0000 0.5000 0 0.5000 0.5000 0.5000] ;
assert(isequal(pair_mean(x),y_correct))
y =
[]
|
4 | Pass |
x = [1 100 1000 10000];
y_correct = [0.0505 0.5500 5.5000] *1000;
assert(isequal(pair_mean(x),y_correct))
y =
[]
|
17217 Solvers
Append two matrix as shown below example
181 Solvers
992 Solvers
1141 Solvers
121 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!