fft moving window problem

조회 수: 6 (최근 30일)
Katarzyna
Katarzyna 2012년 8월 7일
댓글: Pengxiang Huang 2020년 6월 12일
I'd like to perform moving window fft on my signal. I'd like to use hamming window first, and then try hanning. I started writing the code, however I dont know how to save and merge data from each fft in the loop. I'll be very grateful to any suggestions. The code is:
x = sig; % my signal
nx = length(x); % size of signal
w = hamming(32); % hamming window
nw = length(w); % size of window
pos=1;
while (pos+nw <= nx) % while enough signal left
y = x(pos:pos+nw-1).*w; % make window y
%%%%process window y %%%%
yy = fft(y,32);
pos = pos + nw/2; % next window
end
thanks in advance, KK

답변 (2개)

Daniel Shub
Daniel Shub 2012년 8월 7일
You should have a look at SPECTROGRAM.
  댓글 수: 1
Pengxiang Huang
Pengxiang Huang 2020년 6월 12일
spectrogram doe not fit for his purpose totally, you may miss a lot of consideration such as computation burden.

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


Katarzyna
Katarzyna 2012년 8월 8일
I am analysing spectrogram too, but in this case I would like to perform fft n times on the m parts of the signal. I can see in my head a moving window of 64samples with increment e.g 32samples (50% overlap). I dont know how to save and merge fft results from each step.
  댓글 수: 2
Daniel Shub
Daniel Shub 2012년 8월 8일
This should be a comment on my answer, and not a new answer. Have you read the documentation of SPECTROGRAM. This is exactly what the function does.
Pengxiang Huang
Pengxiang Huang 2020년 6월 12일
did you finally solve it

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

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by