inv_gf2.m
来自「simulation ldpc channel for communicatio」· M 代码 · 共 21 行
M
21 行
function [b]=inv_GF2(A)
%Ainv=inv_GF2(A)
%For examples and more details, please refer to the LDPC toolkit tutorial at
%http://arun-10.tripod.com/ldpc/ldpc.htm
dim=size(A);
rows=dim(1);
cols=dim(2);for i=1:rows for j=1:rows unity(i,j)=0; end unity(i,i)=1;endfor i=1:rows b(1:rows,i)=gflineq(A,unity(1:rows,i));end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?