Problem 56210. Find the moving-average of the elements of a vector
Example
Input vector: [1 2 3 4]
output vector: 1st element=1/1, 2nd element=(1+2)/2, 3rd element=(1+2+3)/3, 4th element=(1+2+3+4)/4.
That is, [1 1.5 2 2.5]
Solution Stats
Problem Comments
-
1 Comment
Rafael S.T. Vieira
on 8 Nov 2022
FYI: That's not the definition of moving average, but cool.
Solution Comments
Show commentsProblem Recent Solvers21
Suggested Problems
-
476 Solvers
-
Matrix multiplication across rows
329 Solvers
-
Electrical Diode Current Calculation
643 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
1911 Solvers
-
7993 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!