Frequency domain of wvtool - how to replicate?
9 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to obtain the frequency domain (in dB) data of a Kaiser window and I'm unable to duplicate what results from the "wvtool". My code is below. Why does my fft plot not show all the side lobes that are shown in the Frequency Domain of the wvtool GUI?
if true
% code
end
N=100;
w = window(@kaiser,N,1)
figure(1);subplot(1,2,1);
plot(w);
subplot(1,2,2);
plot(db(abs(fft(w))));axis([0 50 -80 40]);
wvtool(w)
0 件のコメント
採用された回答
Honglei Chen
2016 年 8 月 12 日
You need more points in there. The default is probably 512 or 1024. Try
plot(db(abs(fft(w,1024))));axis([0 50 -80 40]);
HTH
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Windows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!