• 大小: 45KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: 其他
  • 标签: polar  SC  

资源简介

该代码从polar信道编码到SC译码算法在BEC信道上进行全面仿真。仿真结果是基于不同码率的误块率。

资源截图

代码片段和文件信息

% 28 Haz 2006 Erdal Arikan
% Encoder for the folding construction
% This function assumes that u is of dimension N=2^n in other words u has
% data bits as well as frozen bits which may have been set arbitrarily.

function x = encode(u);
N = size(u1); % N must be a power of 2
n = log2(N);
if n==1
    x = [mod(u(1)+u(2)2); u(2)];
    return;
else
    x1 = encode(mod(u(1:N/21)+u(N/2+1:N1)2));
    x2 = encode(u(N/2+1:N1));
    x = [x1; x2];
end
%x=rvsl(x); % bit-reversal This must be applied externally
return
    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-08-24 10:23  Polar Code Encoder and Decoder\
     文件        5367  2014-07-03 16:50  Polar Code Encoder and Decoder\BEC_5_0_1_60mex.mat
     文件        4206  2014-07-03 16:50  Polar Code Encoder and Decoder\BEC_5_1_1_60_mex.mat
     文件       24447  2014-08-25 16:22  Polar Code Encoder and Decoder\BEC_8_0_1_60_0_mex.mat
     文件         540  2014-07-03 16:50  Polar Code Encoder and Decoder\encode.m
     文件        1060  2014-07-03 16:50  Polar Code Encoder and Decoder\fbp.c
     文件         310  2014-07-03 16:50  Polar Code Encoder and Decoder\fbp.m
     文件       20480  2014-07-03 16:50  Polar Code Encoder and Decoder\fbp2.mexw32
     文件         369  2014-07-03 16:50  Polar Code Encoder and Decoder\get_bec_erasure_rates.m
     文件        1038  2014-07-03 16:50  Polar Code Encoder and Decoder\latex_table_BEC_8_0_1_60_0_mex.txt
     文件        2416  2014-07-03 16:50  Polar Code Encoder and Decoder\latex_table_generator.m
     文件        9104  2014-07-03 16:50  Polar Code Encoder and Decoder\main.m
     文件         192  2014-07-03 16:50  Polar Code Encoder and Decoder\mut_inf.m
     文件         666  2014-07-03 16:50  Polar Code Encoder and Decoder\rshffl.c
     文件         127  2014-07-03 16:50  Polar Code Encoder and Decoder\rshffl.m
     文件       20480  2014-07-03 16:50  Polar Code Encoder and Decoder\rshffl2.mexw32
     文件        1744  2014-07-03 16:50  Polar Code Encoder and Decoder\rvsl.c
     文件         164  2014-07-03 16:50  Polar Code Encoder and Decoder\rvsl.m
     文件       20480  2014-07-03 16:50  Polar Code Encoder and Decoder\rvsl2.mexw32
     文件         667  2014-07-03 16:50  Polar Code Encoder and Decoder\shffl.c
     文件         114  2014-07-03 16:50  Polar Code Encoder and Decoder\shffl.m
     文件       20480  2014-07-03 16:50  Polar Code Encoder and Decoder\shffl2.mexw32

评论

共有 条评论