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))
ans =
3.0000 5.5000 7.0000 8.5000 12.0000
|
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))
ans =
4.5000 13.0000 13.5000 4.0000 1.5000 3.5000 34.5000
|
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))
ans =
1.0000 1.0000 0.5000 0 0.5000 0.5000 0.5000
|
4 | Pass |
x = [1 100 1000 10000];
y_correct = [0.0505 0.5500 5.5000] *1000;
assert(isequal(pair_mean(x),y_correct))
ans =
1.0e+03 *
0.0505 0.5500 5.5000
|
Determine Whether an array is empty
646 Solvers
299 Solvers
07 - Common functions and indexing 1
338 Solvers
213 Solvers
Matrix of almost all zeros, except for main diagonal
152 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!