• 大小: 528B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Matlab
  • 标签: matlab  

资源简介

LTE中指数有信干噪比(EESM映射),CQI计算。matlab程序

资源截图

代码片段和文件信息

function EESMs = LTE_common_EESM( SINRs betamode )

switch mode
    case ‘dB‘
        in_dB = true;
        SINRs = 10.^(SINRs/10);
    case ‘lin‘
        in_dB = false;
    otherwise
        error(‘Only “lin“ or “dB“ accepted“‘);
end

length_SINRs = numel(SINRs

评论

共有 条评论