Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top