⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lowpass_filter.m

📁 通过图形实现OFMD的图像仿真
💻 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 + -