📄 lowpass_filter.m
字号:
function [channel_post_lp]=lowpass_filter(channel_estimation)
frame_symbol=68;
row_begin=3;
row_end=frame_symbol-3;
para=1705;
fft_length=2048;
gi=1/8;
gi_length=gi*fft_length;
channel_post_lp=zeros(frame_symbol, para);
for count_sn=row_begin:row_end
channel_response=ifft(channel_estimation(count_sn,:));
channel_response(gi_length+1:para)=zeros(1, para-gi_length);
channel_post_lp(count_sn,:)=fft(channel_response);
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -