资源简介

SCMA译码仿真,做毕业设计的时候写的。可能效果不是最理想的

资源截图

代码片段和文件信息

function [LLR]=BCJR(data_Rx_turboNobitlengthLeL)
next_state=[1 5;...
            5 1;...
            6 2;...
            2 6;...
            3 7;...
            7 3;...
            8 4;...
            4 8;];
 
next_out=[0 0 1 1;...
          0 0 1 1;...
          0 1 1 0;...
          0 1 1 0;...
          0 1 1 0;...
          0 1 1 0;...
          0 0 1 1;...
          0 0 1 1;];
      
     
last_state=[1 2;...
            4 3;...
            5 6;...
            8 7;...
            2 1;...
            3 4;...
            6 5;...
            7 8;];
        
     



alpha=zeros(bitlength8);
beta=zeros(bitlength8);

alpha(1:)=[1 0 0 0 0 0 0 0];
beta(bitlength:)=[1/8 1/8 1/8 1/8 1/8 1/8 1/8 1/8];
      
data_Rx_turbo=squeeze(data_Rx_turbo);
g

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-03-22 11:19  SCMA_learn\
     文件        2625  2016-02-25 15:38  SCMA_learn\BCJR.m
     文件        2039  2016-02-25 15:38  SCMA_learn\BCJR_maxlog.m
     文件        2912  2016-02-25 15:38  SCMA_learn\BCJR_maxlog_c.c
     文件       11264  2016-02-25 15:38  SCMA_learn\BCJR_maxlog_c.mexw64
     文件      183296  2016-02-25 15:38  SCMA_learn\BCJR_maxlog_c.mexw64.pdb
     文件        2912  2016-02-29 15:14  SCMA_learn\BCJR_maxlog_check_c.c
     文件       11264  2016-02-29 15:14  SCMA_learn\BCJR_maxlog_check_c.mexw64
     文件        2912  2016-02-29 15:14  SCMA_learn\BCJR_maxlog_cheinter_c.c
     文件       11264  2016-02-29 15:14  SCMA_learn\BCJR_maxlog_cheinter_c.mexw64
     文件         198  2016-02-25 15:38  SCMA_learn\BER_user.mat
     文件         485  2015-12-23 16:28  SCMA_learn\convcorr.m
     文件         463  2015-12-29 15:33  SCMA_learn\lte_turbocode_rsc.m
     文件        7667  2016-03-01 09:04  SCMA_learn\main.m
     文件        4096  2016-02-25 15:38  SCMA_learn\maxlog_MPA_decode.m
     文件        7986  2016-02-25 15:38  SCMA_learn\maxlog_MPA_decode_c.c
     文件       13312  2016-02-25 15:38  SCMA_learn\maxlog_MPA_decode_c.mexw64
     文件      183296  2016-02-25 15:38  SCMA_learn\maxlog_MPA_decode_c.mexw64.pdb
     文件       15771  2015-12-31 09:04  SCMA_learn\MPA turbo 1000frames 1024bit.fig
     文件       22314  2016-02-25 15:38  SCMA_learn\MPA&maxlogMPA 300_5.fig
     文件       11476  2015-11-27 09:35  SCMA_learn\MPA&maxlog_MPA.fig
     文件        3377  2016-01-05 10:43  SCMA_learn\MPA_decode.m
     文件        7671  2016-02-25 15:38  SCMA_learn\MPA_decode_c.c
     文件       15872  2016-02-25 15:38  SCMA_learn\MPA_decode_c.mexw64
     文件      183296  2016-02-25 15:38  SCMA_learn\MPA_decode_c.mexw64.pdb
     文件       21717  2016-02-25 15:38  SCMA_learn\MPA_turbo&maxlogMPA_maxlogturbo 100frame.fig
     文件       20603  2016-02-25 15:38  SCMA_learn\MPA_turbo&maxlogMPA_maxlogturbo 500frame.fig
     文件        3963  2016-02-25 15:38  SCMA_learn\QPSK_turbo.m
     文件        2781  2015-12-30 16:02  SCMA_learn\SISO_dec_map.m
     文件       16695  2015-12-31 15:53  SCMA_learn\turbo & maxlog_turbo.fig
     文件       15539  2016-02-25 15:38  SCMA_learn\turbo 500frames 1024bits.fig
............此处省略8个文件信息

评论

共有 条评论