资源简介
一本介绍如何进行差错控制编码实际仿真的书籍(包括所有配套的matlab仿真代码)

代码片段和文件信息
% file name: bsc.m
% description: bsc_out = bsc(bsc_inpx) is a model of binary symetric channel.
% the function is provided with bsc_in the binary sequence or array into bsc (number of columns * px must >= 1)
% and px the crossover probability of the bsc channel.
% it outputs bsc_out which is the corrupted binary sequnece or array coming out of the bsc.
% algorithm: use randerr to generate error sequnece or array
% author: y. jiang
% date: june 2010
% revision: 1.0
function bsc_out = bsc(bsc_inpx)
[mn] = size(bsc_in);
if n*px < 1
disp(‘Error! not enough input columns!‘);
bsc_out = [];
elseif length(find(bsc_in==0)) + length(find(bsc_in==1)) ~= numel(bsc_in)
disp(‘Error! nonbinary input!‘);
bsc_out = [];
else
num_err = fix(px*n); % number of errors per row
bsc_out = mod(bsc_in+randerr(mnnum_err)2);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-04-27 12:12 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\
文件 3728437 2015-04-27 09:05 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB.pdf
目录 0 2015-04-27 12:11 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch1\
文件 989 2010-08-16 00:41 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch1\bsc.m
文件 375 2010-08-16 00:41 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch1\bsc_ex.m
文件 1169 2010-08-16 00:41 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch1\cgain.m
文件 428 2010-08-16 00:41 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch1\cgain_ex.m
文件 809 2010-08-15 11:22 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch1\chcap.m
文件 408 2010-08-16 00:41 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch1\qfunc.m
目录 0 2015-04-27 12:11 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch2\
文件 1246 2010-08-16 11:34 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch2\gfinv_lfsr.m
文件 257 2010-08-16 11:34 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch2\gfinv_lfsr_ex.m
文件 545 2010-08-16 11:35 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch2\gfinvp.m
文件 268 2010-08-15 11:17 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch2\gfinvp_ex.m
文件 587 2010-08-15 13:13 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch2\gfmulp.m
文件 274 2010-08-16 11:35 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch2\gfmulp_ex.m
目录 0 2015-04-27 12:11 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\
文件 1510 2010-08-16 11:36 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\bpsksim.m
文件 535 2010-08-16 11:36 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\bpsktheory.m
文件 828 2010-08-15 10:06 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\chsrchdemo.m
文件 767 2010-08-15 13:08 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\crcchk.m
文件 446 2010-08-15 10:14 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\crcchk_ex.m
文件 474 2010-08-16 11:37 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\dmin_ex.m
文件 759 2010-08-16 11:36 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\errpat.m
文件 50 2010-08-16 11:36 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\errpat_ex.m
文件 399 2010-08-15 10:15 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\exp3_1.m
文件 469 2010-08-15 10:15 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\exp3_3.m
文件 732 2010-08-16 11:36 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\g2hpoly.m
文件 430 2010-08-15 13:07 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\ghchk.m
文件 279 2010-08-16 11:36 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\ghchk_ex.m
文件 1769 2010-08-16 11:36 A_Practical_Guide_to_Error_Control_Coding_Using_MATLAB\ch3\hammdec.m
............此处省略81个文件信息
- 上一篇:SRC人脸识别程序MATLAB
- 下一篇:用Matlab绘制发动机万有特性曲线
相关资源
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
评论
共有 条评论