资源简介
PEG algorithm for LDPC codes
代码片段和文件信息
function [H] = alist2sparse(fname)
% reads binary parity check matrix in “alist“ format from file FNAME and
% converts it to sparse matrix used in MATLAB routines.
% This is an interface to matrices at http://wol.ra.phy.cam.ac.uk/mackay/codes/
%
% Example
% [H] = alist2sparse(‘A‘); % A is the ascii file in alist format
% Copyright (c) 1999 by Igor Kozintsev igor@ifp.uiuc.edu
% $Revision: 1.1 $ $Date: 2000/03/23 $ Bug fixed by Hatim Behairy
fid = fopen(fname);
n = fscanf(fid‘%d‘1);
m = fscanf(fid‘%d‘1);
maxinrow = fscanf(fid‘%d‘1);
junk = fscanf(fid‘%d‘1); % no need
num = fscanf(fid‘%d‘[1 n]); % number of elements in rows
num2(1:n)=maxinrow;
junk = fscanf(fid‘%d‘[1 m]); % no need
position = zeros(nmaxinrow);
for i=1:n
for j=1:n
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2203 2012-10-10 17:12 Progressive edge growth\1st_girth_14.mat
文件 2750 2012-10-10 17:14 Progressive edge growth\2nd_girth_8.mat
文件 3727 2011-08-07 19:59 Progressive edge growth\2peg_504_girth=8_dvmax=5.mat
文件 2555 2012-10-10 17:18 Progressive edge growth\3rd_girth_8.mat
文件 6253 2012-10-10 17:20 Progressive edge growth\4th_girth_8.mat
文件 8031 2012-10-10 17:26 Progressive edge growth\5th_girth_8.mat
文件 7430 2012-10-10 17:31 Progressive edge growth\6th_girth_10.mat
文件 2095 2010-06-11 23:10 Progressive edge growth\A1.txt
文件 29314 2010-06-12 04:57 Progressive edge growth\A4.txt
文件 1119 2011-08-03 18:33 Progressive edge growth\ace1.mat
文件 1102 2011-08-03 20:06 Progressive edge growth\ace10.mat
文件 1127 2011-08-03 20:07 Progressive edge growth\ace11.mat
文件 1127 2011-08-03 20:10 Progressive edge growth\ace12.mat
文件 1128 2011-08-03 20:13 Progressive edge growth\ace13.mat
文件 1125 2011-08-03 22:32 Progressive edge growth\ace14.mat
文件 1128 2011-08-03 18:56 Progressive edge growth\ace2.mat
文件 1102 2011-08-03 19:14 Progressive edge growth\ace3.mat
文件 1102 2011-08-03 19:54 Progressive edge growth\ace4.mat
文件 1102 2011-08-03 19:57 Progressive edge growth\ace5.mat
文件 1102 2011-08-03 19:58 Progressive edge growth\ace6.mat
文件 1127 2011-08-03 20:00 Progressive edge growth\ace7.mat
文件 1102 2011-08-03 20:03 Progressive edge growth\ace8.mat
文件 1102 2011-08-03 20:04 Progressive edge growth\ace9.mat
文件 1079 2009-03-24 00:29 Progressive edge growth\alist2sparse.m
文件 1073 2011-07-24 19:27 Progressive edge growth\bitwise_girth_calculation.m
文件 1475 2010-07-13 20:56 Progressive edge growth\CalcGirth.m
文件 787 2011-08-02 19:57 Progressive edge growth\calculate_ace.m
文件 1404 2011-08-02 21:13 Progressive edge growth\calculate_ace_peg.asv
文件 1407 2011-08-02 20:43 Progressive edge growth\calculate_ace_peg.m
文件 207 2010-10-30 18:00 Progressive edge growth\cnassigned.asv
文件 253 2010-10-30 18:10 Progressive edge growth\cnassigned.m
............此处省略209个文件信息
- 上一篇:ANC
- 下一篇:BPDN 基于字典学习的匹配追踪算法
相关资源
- Ldpc编译码方案MATLAB仿真
- MP3原理和实现
- 基于MATLAB的低密度奇偶校LDPC验码编码
- 基于matlab的MPEGVideo压缩算法程序
- 数字图像处理|Matlab-数字图像编码实
- JPEG编码标准及算法实现
- 9-JPEG2000编码方式的MATLAB实现+原理讲解
- JPEG解析包matlab
- LDPC编译码器Matlab代码及参考资料
- MATLAB读取JPEG图片的DCT系数
- JPEG compression 压缩代码
- LDPC码编译码器的matlab实现
- 基于MATLAB的JPEG的编码和解码
- LDPC编码解码matlab代码和Verilog代码及资
- LDPC编码解码FPGA Verilog+MATLAB
- pegasos算法matlab代码
- LDPC编解码的MATLAB仿真实现
- 基于MATLAB的pegasis路由算法研究
- 基于DCT的JPEG图像压缩
- 可变码率LDPC的MATLAB实现
- 基于DCT_变换的JPEG图像压缩及其MATLA
- QC-LDPC码的编码和译码程序
- JPEG 压缩和解压 matlab 代码
- 音频处理maltab代码
- matlab开发-灰度图像的jpeg压缩
- LDPC码编译码仿真
- JPEG基本系统的matlab实现
- JPEG图像压缩编码及其MATLAB仿真实现
- LDPC码MATLAB程序
- 实现jpeg压缩 的matlab程序
评论
共有 条评论