Moving Mean Function - How to apply
6 次查看(过去 30 天)
显示 更早的评论
Hey guys,
I want to create a moving average with window size 4 as depicted below (take last 4 entries and in the beginning the highest number of entries available).
Unfortunately I do not get along with the "movmean" function. Can anyone help me?
Val MovAvg
1 1
2 1,5
3 2
4 2,5
5 3,5
6 4,5
7 5,5
8 6,5
0 个评论
采纳的回答
Guillaume
2019-6-1
movmean(yourvector, [3, 0], 'Endpoints', 'shrink'); %3 values backward (plus current value), 0 forward. Shrink at edges (beginning only since only looking backward)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Big Data Processing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!