fft moving window problem
7 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(2 个)
Daniel Shub
2012-8-7
You should have a look at SPECTROGRAM.
1 个评论
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
2012-8-8
2 个评论
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!