资源简介
此资源是一份有关于OFDM系统信号传输发射端、接收端的源码
代码片段和文件信息
%
function channel_estimate = rx_estimate_channel(freq_tr_syms cir sim_options)
global sim_consts;
[n_tx_antennas n_rx_antennas] = get_n_antennas(sim_options);
if sim_options.ChannelEstimation
% Estimate from training symbols
if ~sim_options.UseTxDiv
for rx_ant=1:n_rx_antennas
mean_symbols = mean(squeeze(freq_tr_syms(rx_ant::)).‘);
channel_estimate(rx_ant:) = mean_symbols.*conj(sim_consts.LongTrainingSymbols);
end
channel_estimate = channel_estimate.‘;
else
for rx_ant=1:n_rx_antennas
for tx_ant = 1:n_tx_antennas
tr_symbol = squeeze(freq_tr_syms(rx_ant : tx_ant));
channel_estimate((rx_ant-1)*n_tx_antennas+tx_ant:) = ...
tr_symbol.*conj(sim_consts.LongTrainingSymbols*sqrt(1/2));
end
end
channel_estimate = channel_estimate.‘;
end;
else
% Known channel estimate
channel_estimate = fft([zeros(size(cir1) abs(sim_options.RxTimingOffset)) cir] 64 2);
reorder = [33:64 1:32];
channel_estimate(:reorder) = channel_estimate;
channel_estimate = channel_estimate(: sim_consts.UsedSubcIdx).‘;
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1208 2001-11-18 00:33 rx_estimate_channel.m
----------- --------- ---------- ----- ----
1426 2
- 上一篇:DV-Hop定位算法
- 下一篇:bp神经网络数字识别
相关资源
- OFDMA matlab仿真程序
-
OFDMMIMO仿真实验合集 matlab simuli
nk - OFDM,QPSK,MATLAB仿真
- 用MATLAB生成OFDM信号
- 802.11a OFDM matlab
- 4QAM调制的OFDM程序matlab的
- STBC——OFDM matlab
- 用MATLAB实现ofdm的ls估计算法
- 802.11a OFDM MATLAB仿真代码!(推荐)
- 基于MATLAB的OFDM系统仿真程序
- OFDM信道估计MATLAB代码
- OFDM调制程序 MATLAB
- 802.11a OFDM MATLAB仿真代码
- OFDM系统性能的仿真代码,包括对于循
- 《MIMO-OFDM无线通信技术及MATLAB实现》
- Matlab仿真IEEE 802.11a系统.zip
- MIMO_OFDM联合仿真的matlab 源程序很完整
- OFDM瑞利衰落信道下的MATLAB程序
- 降低ofdm系统中papr改进pts算法仿真
- DCO_OFDM程序代码
- OFDM盲信道估计/基于子空间的盲信道估
- matlabcode(与瑞利信道相关的OFDM仿真)
- 自适应OFDM_malab仿真程序
- OFDM中LS和DFT信道估计算法matlab程序实
- mimo-ofdm系统fft方法的实现
- OFDM误码率
- MIMO_OFDM.m
- OFDM峰平比及matlab程序仿真
- OFDMA的matlab仿真
-
ofdm的simuli
nk,matlab仿真
评论
共有 条评论