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))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13055 Solvers
253 Solvers
965 Solvers
123 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!