forked from just1nGH/5G-NR-LDPC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# 5G-NR-LDPC | ||
5G NR LDPC MATLAB implementation | ||
|
||
Ref : https://nptel.ac.in/courses/108/106/108106137/ | ||
A good starting point is to run `example_run.m` | ||
|
||
A more efficeint implementation from the above reference. | ||
This implementation uses min-sum offset decoding algorithms, read `LDPC_decoder_help_doc.pdf` for detail. | ||
|
||
This implementation doesn't create a whole parity check matrix H of size (N-K)by N, neither does it generate the corresponding exponent matrx of H (E(H)) of size (N-K)/Z_c by N/Z_c (like the implementation in the above link). Instead it just uses the zero or positive shift valules from the table listed in 3GPP (3GPP TS 38.212 Table 5.3.2-2/3). For BG1 is with 316 values, and BG2 is with 197 value. Save memory& time! | ||
Any questions, eamil [email protected] |