资源简介
matlab lte network parameter set 4g lte femtocell 网络参数设置
代码片段和文件信息
function LTE_config = LTE_load_params(varargin)
%% Default simulation option
default_simulation = ‘tri_sector_tilted‘;
%% If no simulation option is defined use the default one
if ~isempty(varargin)
simulation_type = varargin{1};
else
simulation_type = default_simulation; % Default value
end
fprintf(‘Using “%s“ simulation configuration\n.‘simulation_type)
%% Load the corresponding simulation parameters
switch simulation_type
case ‘tri_sector‘
LTE_config = simulation_config.tri_sector.apply_parameters;
case {‘tri_sector_tilted‘ ‘tri_sector_tilted_4x2‘ ‘tri_sector_tilted_4x4‘}
LTE_config = simulation_config.hex_grid_tilted.apply_parameters;
case ‘tri_sector_plus_femtocells‘
LTE_config = simulation_config.hex_grid_tilted_with_femtocells.apply_parameters;
case ‘six_sector_tilted‘
LTE_config = simulation_config.hex_grid_sixsectors.apply_parameters;;
case ‘capesso_pathlossmaps‘
LTE_config = simulation_config.example_capesso.apply_parameters;
case ‘omnidirectional_eNodeBs‘
LTE_config = simulation_config.hex_grid_omnidirectional.apply_parameters;
otherwise
warning(‘Simulation type not defined: using default one instead‘);
simulation_type = default_simulation;
LTE_config = simulation_config.hex_grid_tilted.apply_parameters;
end
%% Some adjustments to the loaded simulation parameters
switch simulation_type
case ‘tri_sector‘
LTE_config.results_file = ‘auto‘;
LTE_config.output_filename_suffix = ‘tri_sector‘;
case ‘tri_sector_tilted‘
LTE_config.results_file = ‘auto‘;
LTE_config.output_filename_suffix = ‘tri_sector_tilted‘;
LTE_config.compute_only_UEs_from_this_eNodeBs = [13 14 15 16 17 18 19 20 21 28 29 30 31 32 33 34 35 36 46 47 48];
LTE_config.default_shown_GUI_cells = [13 14 15 16 17 18 19 20 21 28 29 30 31 32 33 34 35 36 46 47 48];
case ‘tri_sector_plus_femtocells‘
LTE_config.results_file = ‘auto‘;
LTE_config.output_filename_suffix = ‘tri_sector_plus_femtocells‘;
case ‘six_sector_tilted‘
LTE_config.results_file = ‘auto‘;
LTE_config.outpu5t_filename_suffix = ‘six_sector‘;
case ‘capesso_pathlossmaps‘
LTE_config.results_file = ‘auto‘;
LTE_config.output_filename_suffix = ‘capesso_pathloss‘;
case ‘tri_sector_tilted_4x2‘
LTE_config.results_file = ‘auto‘;
LTE_config.nTX = 4;
LTE_config.nRX = 2;
LTE_config.channel_model.trace_length = 10;
LTE_config.output_filename_suffix = ‘tri_sector_tilted_4x2‘;
LTE_config.pregenerated_ff_file = ‘auto‘;
case ‘tri_sector_tilted_4x4‘
LTE_config.results_file = ‘auto‘;
LTE_config.nTX = 4;
LTE_c
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3574 2012-05-15 14:09 LTE_load_params.m
----------- --------- ---------- ----- ----
3574 1
- 上一篇:BP神经网络预测实例
- 下一篇:三维声源定位
相关资源
- 基于Matlab的最大熵模糊图像复原算法
- KITTI雷达点云与图像数据融合matlab源码
- matlab 解码 NMEA0183格式GGA数据
- 一个有关飞机的模板匹配的跟踪的m
- 基于MATLAB的电弧模型仿真
- PRI信号分选
- Matlab论文:基于Matlab的二进制数字调
- 802.11协议吞吐量随节点数性能仿真
- matlab图片rgb转yuv,存.yuv文件 播放器
- Duda模式分类Pattern Classification MATLAB 代
- dijkstra算法的matlab实现31274
- 随机路径生成函数matlab
- matlab语音信号处理工具箱
- matlab2013激活文件
- matlab实现游程编码
- 暗通道先验+引导滤波MATLAB代码
- 边缘检测中的canny算法及其matlab实现
- 通过达曼光栅生成点阵的matlab程序.
- MATLAB核函数算法
- 求控制系统的性能指标MptrtsFAI,matl
- matlab 求DTFT
- 逆变器重复控制算法MATLAB仿真
- MATLAB R2014b 许可协议文件
- matlab读取comtrade格式的程序
- 基于Matlab的RC一阶电路仿真
- Las点云数据读取代码
- 雷达回波加天线方向图模拟程序
- MATLAB 2017b 安装文件及其破解文件百度
- Matlab实现音频降噪
- matlab实现导航卫星系统中计算多普勒
评论
共有 条评论