Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

C and MATLAB implementation for LDPC encoding and decoding

NotificationsYou must be signed in to change notification settings

tavildar/LDPC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository provides C and MATLAB implementations for LDPC codes.

For an overview of LDPC codes, please see:LDPC Wikipedia page or the bookModern Coding Theory by Tom Richardson and Rüdiger Urbanke.

Overview of what is provided

  • WiFi (IEEE 802.11n) LDPC code construction

  • Encoding by back-substitution for WiFi LDPC codes

  • Iterative belief propagation (BP) Decoding (including min-sum)

  • AWGN simulations for BPSK, 4-ASK, 8-ASK (equivalently QPSK, 16-QAM, and 64-QAM)

It is worth emphasizing the code is not necessarily specification compliant with IEEE 802.11n. In particular, aspects such as puncturing, padding, and stream parsing are not implemented.

Decoding performance

WiFi LDPC performance over QPSK

WiFi LDPC performance over 16-QAM

WiFi LDPC performance over 64-QAM

The figure above shows the performance of LDPC codes for various rates and constellation choices over AWGN channel.

The results are using LdpcC code, and are based on 50K runs.

Runtime performance C and MATLAB

The run time comparison is as follows (run on a single macbook pro 2015):

Comparison of number of runs per second
ParametersLdpcCLdpcMSpeedup C/M
N = 648, rate = 1/267125.5x
N = 1296, rate = 1/2315.55.5x
N = 1944, rate = 1/2212.817.5x

The above numbers are based on 20 iterations of the BP decoderwithout early termination. So, typically, one should see much better performance.

Code Interface

The key code is in class LdpcCode (C and MATLAB). The interface to this class is as follows:

  • load_wifi_ldpc

    • Input: block_length (= N), rate (or rate_index)
    • Output: None
    • Function: creates WiFi LDPC code with specified parameters.
  • encode

    • Inputs: info bits (length = K)
    • Output: coded bits (length = N)
    • Function: perform encoding by back substitution (the code is inspired from the code insimgunz)
  • decode

    • Input: llr vector, max iterations, min_sum algorithm
    • Output: decoded codeword (for WiFi codes, first K bits are the information bits)
    • Function: BP decoder (seeRichardson-Urbanke)

Note that for speed up of simulation, it is assumed in the main file that if a given run (as in info bit and noise realizations) is decoded for a lower EbNo value, then it will be decoded for a higher EbNo value.

Bugs and support

The LdpcC code will not compile with libstdc++. The code only works with libc++.

The code is provided as is without any warranty (implicit or explicit) and without guarantee of correctness.

References

  1. Tom Richardson andRudiger Urbanke, "Modern Coding Theory"https://www.amazon.com/Modern-Coding-Theory-Tom-Richardson/dp/0521852293
  2. simgunz 802.11n-ldpc Git repositoryhttps://github.com/simgunz/802.11n-ldpc

About

C and MATLAB implementation for LDPC encoding and decoding

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp