LDPC coding and decoding

Status
Not open for further replies.

Thaus

Newbie level 3
Joined
Apr 11, 2017
Messages
4
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
66
Myself also working on LDPC coding and decoding. I need to transform a parity-check matrix H (that only consists of ones and zeros) from a non-standard to a standard form through C/C++ programming langauge. Here below you may find three samples of non-standard parity check matrices in which Gauss-Jordan elimination (over GF(2)) can be applied.

I need C/C++ programming logic please help me if you do have any idea about LDPC.

this is, express it as

Hsys = [I| P]

This is my H matrix

H=[1 1 0 0 1 0;
1 0 0 1 0 1;
1 1 1 0 0 1 ];

Expected Systematic H matrix

Hsys=[1 0 0 1 0 1;
0 1 0 1 1 1;
0 0 1 0 1 1 ];
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…