Help with Fourier analysis of wav signal

조회 수: 3 (최근 30일)
Brendan Zotto
Brendan Zotto 2016년 9월 16일
댓글: Star Strider 2016년 9월 16일
Hey I am trying to understand this fft waveform i have with a .wav file I recorded of myself. I feel as though the fft is not right, or I am misunderstanding what is being shown. I posted the fft and it shows the signal having a frequency components magnitude increasing at frequencies much higher than my voice. I think the frequency range should be in the range of 250-350Hz. Can anyone explain what I am not understanding? I also added the time domain representation of the wave.
Here is my code.
Mono = (y(:,1)+y(:,2))/2;
y = Mono;
time=(1:length(y))/Fs;
F = 1./time;
nfft = fft(y);
plot(F,nfft)

채택된 답변

Star Strider
Star Strider 2016년 9월 16일
For the correct way to code and interpret the Fourier transform of your signal, see the R2015a documentation for the fft (link) function. Particularly note the code between the first (top) two plot figures.
  댓글 수: 4
Brendan Zotto
Brendan Zotto 2016년 9월 16일
I appreciate this, thank you Im fairly new to this stuff!
Star Strider
Star Strider 2016년 9월 16일
My pleasure.
We all were once!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Fourier and Cosine Transforms에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by