• 大小: 47KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-07
  • 语言: Matlab
  • 标签: LTE  simulink  

资源简介

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

评论

共有 条评论