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

📄 rx_phase_tracker.m

📁 无线局域网情况下OFDM的信道分配仿真代码
💻 M
字号:

function corrected_syms = rx_phase_tracker(freq_data_syms, freq_pilot_syms, channel_est, sim_options);

global sim_consts;

num_symbols = size(freq_data_syms,2);
corrected_syms = zeros(sim_consts.NumDataSubc, num_symbols);

if sim_options.PilotPhaseTracking      
   % estimate the phase change using the pilots   correction_phases = rx_pilot_phase_est(freq_pilot_syms, channel_est, sim_options);
      % correct symbol using the phase estimate of this one OFDM symbol,
   corrected_syms = exp(-j*correction_phases).*freq_data_syms;
else
   corrected_syms = freq_data_syms;
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -