how i average n values in array
古いコメントを表示
if i have data a and i want to mean or average every 10 values as 1:10, 2:11, 3:12 and as so on for length of data ?
採用された回答
その他の回答 (2 件)
Star Strider
2016 年 8 月 21 日
‘But i need overlap between the values as 1:10 then from 2:11 and so on’
Use a moving average filter:
Heart_pulse_avg = filter(ones(1,10), 10, Heart_pulse);
1 件のコメント
Steven Lord
2016 年 8 月 21 日
Andrei Bobrov
2016 年 8 月 21 日
a - your vector;
out = movsum(a,[0 9],'Endpoints','discard')/10;
カテゴリ
ヘルプ センター および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!