资源简介
LTE物理层的simulink仿真,帮助理解LTE物理层的行为。该simulink模型遵循Release10版本。
代码片段和文件信息
function h = getFigRxStreams(nStr type)
% Helper fcn used to create the corresponding
% saved figure files (*2.fig and *4.fig for 2 and 4 layers)
%
% Reuse the fcn for more plots just keep tags unique
h = figure;
Parent1 = h;
if strcmp(type ‘pre‘) % After MIMO receiver
titleLbl = ‘Pre-demodulation data stream ‘;
axLbl = ‘preRx‘;
elseif strcmp(type ‘post‘) % After OFDM receiver
titleLbl = ‘Received data stream ‘;
axLbl = ‘postRx‘;
end
if (nStr == 4) % for 4 streams
% Create Receive axes
for n = 1:4
str_title = [titleLbl num2str(n)];
str_tag = [axLbl num2str(n)];
b = 0.05 + 0.5*((n-2.5)<0);
a = 0.05 + 0.5*(rem(n2)==0);
axes1 = axes(‘Parent‘ Parent1 ‘Tag‘ str_tag ...
‘YGrid‘ ‘on‘ ‘XGrid‘‘ on‘...
‘Position‘ [a b 0.4 0.4] ‘FontSize‘ 9);
xlim(axes1[-1.75 1.75]);
ylim(axes1[-1.75 1.75]);
box(axes1‘on‘);
hold(axes1‘all‘);
title(str_title‘FontWeight‘‘bold‘);
end
elseif (nStr == 2) % for 2 streams
% Create Receive axes
for n = 1:2
str_title = [titleLbl num2str(n)];
str_tag = [axLbl num2str(n)];
b = 0.3 + 0.5*((n-2.5)>0);
a = 0.05 + 0.5*(rem(n2)==0);
axes1 = axes(‘Parent‘ Parent1 ‘Tag‘ str_tag ...
‘YGrid‘ ‘on‘ ‘XGrid‘‘ on‘...
‘Position‘ [a b 0.4 0.4] ‘FontSize‘ 9);
xlim(axes1[-1.75 1.75]);
ylim(axes1[-1.75 1.75]);
box(axes1‘on‘);
hold(axes1‘all‘);
title(str_title‘FontWeight‘‘bold‘);
end
end
% [EOF]
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2151 2011-12-20 17:59 ReadMe.m
文件 109245 2011-12-20 17:59 commLTEr10_lib.mdl
文件 165150 2011-12-20 17:59 commltePDSCH.mdl
文件 1614 2011-12-20 17:59 getFigRxStreams.m
文件 1551 2011-12-20 18:19 license.txt
文件 3213 2011-12-20 17:59 lteCellSRefSigGen.m
文件 788 2011-12-20 17:59 scrambleLTEPDSCH.m
文件 1700 2011-12-20 17:59 stepLTEMIMOChan.m
相关资源
-
simuli
nk中lm自适应滤波器搭建 -
m语言调用 simuli
nk的方法和修改参数 -
太阳能电池Simuli
nk模型solar.slx -
LADRC的Simuli
nk仿真 -
双极性SPWM的simuli
nk仿真 -
simuli
nk双PWM调速系统仿真 -
二阶模型PID控制simuli
nk仿真模型 -
Simuli
nk - VSC逆变器控制
-
采样定理simuli
nk仿真验证及仿真程序 - turbo码的仿真
-
直流升降压电路simuli
nk模型 完美运 -
神经网络算法simuli
nk -
SPWM变频调速系统仿真Simuli
nk模型 - rbf神经网络的建模与matlab程序与simu
-
扩展卡尔曼滤波SOC算法Simuli
nk模型 - LTE load params
- Gaussian Particle Filter 高斯粒子滤波算法
- 低通滤波器
- FOC_PMSM
- ogisim normal
- 单相lcl滤波逆变器并网电网电流及电
- DFIG_wind_turbine
- 维也纳大学 LTE系统级仿真平台介绍文
- LTE下行链路级仿真程序
- 多相滤波(polyphase filter)的基本原理
- 最新最完整的Matlab粒子滤波工具箱(
- GM_PHD_Filter_v110
-
异步交流异步电机dq0坐标simuli
nk模型 - LTE energy and spectrum efficiency
评论
共有 条评论