필터 지우기
필터 지우기

Smoothen sound signal

조회 수: 1 (최근 30일)
Sonia Wiemann
Sonia Wiemann 2012년 4월 17일
How can I smoothen a sound signal (A) with a 3 msec window? Time points were assigned using the code "plot((0:length(data)-1)/44.1, data)"

답변 (1개)

Image Analyst
Image Analyst 2012년 4월 17일
I'm no audio expert but maybe you can use conv() or filter(). You just have to figure out how many elements long 3 ms is.
  댓글 수: 1
Geoff
Geoff 2012년 4월 17일
Number of samples in 3 milliseconds is:
n = round(sampleRate * 0.003);
Here it looks like the sample rate is 44100, so that will be approximately 132 samples.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by