资源简介
该代码从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
- 上一篇:真正能搜星的Wince6.0模拟器
- 下一篇:飞思卡尔智能车 直立组程序
相关资源
- 人脸识别需要的haarcascade_frontalface_d
- ImageEffect_BrokenScreen
- scons-3.0.1.tar.gz
- Citrix Netscaler ADC VPX1000 LIC文件
- nature science等期刊文章的免费方法
- ASCII码点阵字库
- IBM AppScan8.0破解补丁及方法
- Windows CE 5.0 文本编辑器
- 8*16点阵字库ASC16
- 安装risc-V的rocket的环境,零基础
- 过电压在pscad中仿真模型
- 2018-2019年CSCD.pdf该文档为中国科学引文
- pbsccsetup
- 海南省2010年信息学省队选拔试题及测
- sscom3.2(串口测试工具)
- JS脚本集合 大全 JS脚本集合 大全
- 我见过最好的QOS讲解文档
- deepin-scrot
- Buckboost变换器PSCAD模型
- 思科无线WLC操作手册中文版
- spark中用scala编写累加器小程序统计文
- 在Web of Science中,如何在阅读摘要后获
- 基于Cisco5.3的简单网吧网络设计
- ScktSrvr源码
- 多体动力学仿真软件 MSC ADAMS v2017
- ProcessScheduling.zip
- pscadS变换行波测距
- 文献工具.zip
- MSCOMM控件加脚本注册
- DPSDAB.psimsch
评论
共有 条评论