Problem 44844. Moving average
Solution Stats
Problem Comments
-
2 Comments
Tip: the x vector is useless, and the standard function movmean will not help since we have a window of variable size.
The problem statement is not very clear, but what this problem is asking you to do is compute a moving average where the desired window size is w elements on either side, and where the window shrinks near the edges of the input vector (while staying symmetric) in order to avoid extending beyond the endpoints of said vector.
Also, as @Rafael observed, the vector x is unnecessary and can be ignored; you're only working with y (and w).
Problem Recent Solvers5
Suggested Problems
-
Project Euler: Problem 7, Nth prime
1114 Solvers
-
213 Solvers
-
577 Solvers
-
Find S-parameters of the circuit
37 Solvers
-
Given a window, how many subsets of a vector sum positive
831 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!