?? inv_gf2.m
字號:
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;
end
for i=1:rows
b(1:rows,i)=gflineq(A,unity(1:rows,i),2);
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -