Skip to content

Commit 463b8ad

Browse files
authored
Merge pull request #54 from BastienTr/master
[Fix] Add LDPC new functions to __init__.py
2 parents 1c031f9 + ed89afc commit 463b8ad

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

commpy/channelcoding/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,13 @@
6262
6363
"""
6464

65+
from commpy.channelcoding.algcode import *
6566
from commpy.channelcoding.convcode import Trellis, conv_encode, viterbi_decode
67+
from commpy.channelcoding.gfields import *
6668
from commpy.channelcoding.interleavers import *
69+
from commpy.channelcoding.ldpc import get_ldpc_code_params, ldpc_bp_decode, triang_ldpc_systematic_encode, \
70+
write_ldpc_params, build_matrix
6771
from commpy.channelcoding.turbo import turbo_encode, map_decode, turbo_decode
68-
from commpy.channelcoding.ldpc import get_ldpc_code_params, ldpc_bp_decode
69-
from commpy.channelcoding.gfields import *
70-
from commpy.channelcoding.algcode import *
7172

7273
try:
7374
from numpy.testing import Tester

0 commit comments

Comments
 (0)