📄 jfilter.m
字号:
function[hnw]=Jfilter(Fd)
% generate the time domain response according the Jakes Spectrum Model;
% fd is the maximum Doppler frequency;
NU=0.25;
Xt=20/(2*pi*Fd);
C=1.457; %% normolizing factor;
t=-Xt:(2*Xt/63):Xt;
x=2*pi*Fd*abs(t);
ht=C*Fd*BESSELJ(NU,x)./sqrt(sqrt(x)); %% Bessel function;
n=0:63; %% 64 taps Jakes' filter;
hn=ht;
hnw=hn.*hamming(64)'; %% hamming windowed;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -