フィルターのクリア

how to impement hanning window for following code

2 ビュー (過去 30 日間)
lione felus
lione felus 2015 年 8 月 18 日
As=40;
passbandfreq=0.01;
transitionwidth=500;
normalizedtransitionwidth=transitionwidth/fsamp
fsamp=10000;
fc=1200;
fcn=fc/fsamp
passbandfreq=10^(passbandfreq/20)-1
stopbandfreq=10^(-As/20)
delta=min(passbandfreq,stopbandfreq)
%%using hanning window
N=3.1/normalizedtransitionwidth
hn=hanning(N); % hanning
[H,f]=freqz(hn,1.512,fsamp);
mag=20*log10(abs(H))
plot(fcn,mag),grid on

回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by