Function for Calculating Moving sum
古いコメントを表示
Is there any function to calculate moving sum of a vector? I use "smooth" for calculating the moving average of a vector
1 件のコメント
F.
2012 年 7 月 16 日
I'm sorry but I don't understand "moving sum of a vector" ... Could you explain it and give a little exemple ? thanks
採用された回答
その他の回答 (1 件)
Jonathan Sullivan
2012 年 7 月 16 日
help filter
doc filter
Example: Take a 10 element moving average.
x = rand(1e3,1);
n = 10;
x_moving_average = filter(ones(1,n)/n,1,x);
カテゴリ
ヘルプ センター および File Exchange で Correlation and Convolution についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!