资源简介
无线网络中的信道译码算法,用LDPC编码的BP译码算法,程序相当精炼,迭代次数很少就能够译码
代码片段和文件信息
function [x_hat success k] = ldpc_decode(f0f1H)
% decoding of binary LDPC as in Elec. Letters by MacKay&Neal 13March1997
% For notations see the same reference.
% function [x_hat success k] = ldpc_decode(yf0f1H)
% outputs the estimate x_hat of the ENCODED sequence for
% the received vector y with channel likelihoods of ‘0‘ and ‘1‘s
% in f0 and f1 and parity check matrix H. Success==1 signals
% successful decoding. Maximum number of iterations(重复迭代) is set to 100.
% k returns number of iterations until convergence(收敛).
%
% Example:
% We assume G is systematic G=[A|I] and obviously mod(G*H‘2)=0
% sigma = 1; % AWGN noise deviation
% x = (sign(randn(1size(G1)))+1)/2; % random bits
% y = mod(x*G2); % coding
% z = 2*y-1; % BPSK modulation
% z=z + sigma*randn(1size(G2)); % AWGN transmission
%
% f1=1./(1+exp(-2*z/sigma^2)); % likelihoods
% by兰朋朋 ./矩阵元素右除 A./B表示A(ij)/B(ij)
% f0=1-f1;
% [z_hat success k] = ldpc_decode(zf0f1H);
% x_hat = z_hat(size(G2)+1-size(G1):size(G2));
% x_hat = x_hat‘;
% Copyright (c) 1999 by Igor Kozintsev igor@ifp.uiuc.edu
% $Revision: 1.1 $ $Date: 1999/07/11 $
% fixed high-SNR decoding
[mn] = size(H);
if m>n
H=H‘;
[mn] = size(H);
end
if ~issparse(H) % make H sparse if it is not sparse yet,%by兰朋朋 函数的功能是如果该函数不是稀疏矩阵,就把它转化为稀疏矩阵
%by兰朋朋 在MATLAB中,issparse函数用于判断一个稀疏矩阵存储方式是否是sparse storage organization
%by兰朋朋 如果稀疏矩阵的存储方式是sparse storage organization,则返回逻辑1;否则返回逻辑0。
[iijjsH] = find(H);
%by兰朋朋 返回矩阵H中的非零元素所在的行ii和所在的列jj和矩阵的非零元素sH
H = sparse(iijjsHmn);
%by兰朋朋 [ijs] = find(S);
%by兰朋朋 [mn] = size(S);
%by兰朋朋 S = sparse(ijsmn);
end
%by兰朋朋 BP译码算法
%initialization(没看懂)
[iijj] = find(H); % subscript index to nonzero eleme
- 上一篇:matlab分段灰度线性变换代码
- 下一篇:4dpsk调制解调的Matlab代码
相关资源
- 4dpsk调制解调的Matlab代码
- matlab分段灰度线性变换代码
- 低速电动汽车建模与测试
- 《MATLAB数值计算》2013修订版中译本的
- 利用MATLAB构造线性二次型最优控制器
- Matlab2010b地址
- 线性代数实践及MATLAB入门(陈怀琛)
- Matlab在原图片中画直线
- 用MATLAB的GUIDE工具做有GUI界面的串口通
- Matlab绘制邻接矩阵
- install_supportsoftware_VGG19.exe
- 最小二乘匹配算法、matlab版
- 将matlab中数据输出保存为txt或dat格式
- PID 算法Matlab详解
- Matlab批量转换图片格式
- matlab实现PCM十三折现编码译码
- 经典开环子空间辨识
- EKFUKFmatlab程序比较
- camshift跟踪算法MATLAB源代码注释.txt
- 系统辨识部分算法matlab程序
- LBP算法的Matlab代码
- MATLAB随机拓扑生成源码
- 模糊k均值聚类算法matlab实现
- 色调,饱和度,亮度图,matlab
- 地统计学中的克里格插值法,Matlab编
- 利用MATLAB对图像进行灰度阈值分割,
- matlab计算GTD-UTD绕射源代码.zip
- IEEE30节点测试系统matlab M文件,包含各
- 说话人识别和确认系统Matlab).rar
- 力导向图force-direct算法MATLAB实现含数
评论
共有 条评论