Problem 43279. Weighted moving average
x1=[1 2 1]; y1=[1 2 2 4 5 6 6 8];
Make function for weighted moving average.
z(i)=(x1(i)*y1(i)+x1(i+1)*y1(i+1)+x1(i+2)*y1(i+2))/3
As a result,
z =
2.3333 3.3333 5.0000 6.6667 7.6667 8.6667
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers49
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2773 Solvers
-
372 Solvers
-
Return the first and last characters of a character array
11196 Solvers
-
Solving Quadratic Equations (Version 1)
501 Solvers
-
Element by element multiplication of two vectors
385 Solvers
More from this Author27
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!