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개)

카테고리

질문:

2019년 12월 10일

댓글:

2019년 12월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by