This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
y=[4 4 4 3 3 3 5 5 5 2 9 7 12 6 6 5 1 3 3 3 21 ];
x_correct = [
4
4
4
3
3
3
5
5
5
6
6
6
8
8
8
3
3
3
9
9
9
];
assert(isequal(moving_average(y),x_correct))
|
2 | Pass |
y=[4 13 4 3 3 6 5 6 4 ];
x_correct = [ 7
7
7
4
4
4
5
5
5];
assert(isequal(moving_average(y),x_correct))
|
3306 Solvers
1627 Solvers
116 Solvers
Matrix which contains the values of an other matrix A at the given locations.
195 Solvers
264 Solvers