Running Average of a Massive data set

So I have a data file containing 5 seconds of sound data, where I want to smooth the data with a running average function and then use the Fast Fourier Transform function in MATLAB in order to pinpoint the amplitude spikes that should be a tuning fork and an out of tune instrument. The data has 20,000 popints, however, and the methods I've tried so far accidentially erase the information I want. Is there a way to make a running average function manually for that many data points?

 採用された回答

Image Analyst
Image Analyst 2019 年 12 月 10 日

0 投票

Well 20,000 points is far from massive. Maybe if it were 10,000 times that big. 20k is actually pretty small. Anyway you can use the conv() function.
windowWidth = 101; % an odd number.
kernel = ones(1, windowWidth) / windowWidth;
smoothedSignal = conv(signal, kernel, 'same');
You can also try the movmean() function if you have a recent version of MATLAB.

1 件のコメント

Duncan Cross
Duncan Cross 2019 年 12 月 10 日
It's the biggest one I've had to work with, so it seems massive to me. But your code does smooth it pretty well, thank you!

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by