• 大小: 3KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: Matlab
  • 标签: matlab  

资源简介

polar码编码和译码MATLAB,希望对大家的学习有帮助;极化码的编码和译码MATLAB,希望对大家的学习有帮助;polar码编码和译码MATLAB,希望对大家的学习有帮助;极化码的编码和译码MATLAB,希望对大家的学习有帮助;

资源截图

代码片段和文件信息

function BITdecoder(latestartbit i)
    global PCvar;
    global decision;

    N = PCvar.N;
    n = PCvar.n;

    if i==N  %no bits need to be updated
        return;
    elseif i<=(PCvar.N/2)
        decision.BITS(11) = latestartbit;
    else
        binary_i = dec2bin(i-1n);
        for lastlevel = 1:n
            if binary_i(lastlevel) == ‘0‘
                break;
            end
        end
        
        decision.BITS(21) = latestartbit;
        for level=1:lastlevel-2 
            start = 2^(level-1);
            till = 2^level -1 ;
            for index = start:till
                decision.BITS(2till+2*(index-start)+1) = mod( decision.BITS(1index)+decision.BITS(2index) 2 );
                decision.BITS(2till+2*(index-start)+2) = decision.BITS(2index);
            end
        end
        level=lastlevel-1;
        start = 2^(level-1);
        till = 2^level -1 ;
        for index = start:till
            decision.BITS(1till+2*(index-start)+1) = mod( decision.BITS(1index)+decision.BITS(2index) 2 );
            decision.BITS(1till+2*(index-start)+2) = decision.BITS(2index);
        end
    end

end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......      1141  2018-01-09 03:37  PolarCoding\BITdecoder.m

    .......       524  2018-01-09 03:37  PolarCoding\bitreverse.m

     文件        860  2020-11-08 11:21  PolarCoding\controller_main.m

     文件       1537  2020-11-08 10:35  PolarCoding\DATA\InputBit.txt

    .......       788  2018-01-09 03:37  PolarCoding\decoder.m

    .......       480  2018-01-09 03:37  PolarCoding\encoder.m

    .......       855  2018-01-09 03:37  PolarCoding\initialize.m

    .......      1131  2018-01-09 03:37  PolarCoding\LLvalupdate.m

     目录          0  2020-11-08 10:33  PolarCoding\DATA

     目录          0  2020-11-12 16:46  PolarCoding

----------- ---------  ---------- -----  ----

                 7316                    10


评论

共有 条评论