Skip to content

Commit 0748d3b

Browse files
committed
Change all headers to CommPy contributors.
All contributions are already listed in the thanks file and in git and maintaining the previous header would become difficult.
1 parent 31f24fc commit 0748d3b

20 files changed

+33
-43
lines changed

commpy/channelcoding/algcode.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
2-
3-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
42
# License: BSD 3-Clause
53

6-
from fractions import gcd
74
from numpy import array, arange, concatenate, convolve
85

9-
from commpy.channelcoding.gfields import GF, polymultiply, poly_to_string
6+
from commpy.channelcoding.gfields import GF, poly_to_string
107
from commpy.utilities import dec2bitarray, bitarray2dec
118

129
__all__ = ['cyclic_code_genpoly']

commpy/channelcoding/convcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
22
# License: BSD 3-Clause
33

44
""" Algorithms for Convolutional Codes """

commpy/channelcoding/gfields.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
2-
3-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
42
# License: BSD 3-Clause
53

64
""" Galois Fields """
75

86
from fractions import gcd
7+
98
from numpy import array, zeros, arange, convolve, ndarray, concatenate
10-
from itertools import *
9+
1110
from commpy.utilities import dec2bitarray, bitarray2dec
1211

1312
__all__ = ['GF', 'polydivide', 'polymultiply', 'poly_to_string']

commpy/channelcoding/interleavers.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
2-
3-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
42
# License: BSD 3-Clause
53

64
""" Interleavers and De-interleavers """

commpy/channelcoding/ldpc.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
2-
3-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
42
# License: BSD 3-Clause
53

64
""" LDPC Codes """

commpy/channelcoding/tests/test_convcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
22
# License: BSD 3-Clause
33

44
from numpy import array, inf

commpy/channelcoding/tests/test_gfields.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
2-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
32
# License: BSD 3 clause
43

5-
from numpy import array, ones_like, arange
6-
from numpy.testing import assert_array_almost_equal, assert_array_equal, assert_, assert_equal
4+
from numpy import array, arange
5+
from numpy.testing import assert_array_equal, assert_
6+
77
from commpy.channelcoding.gfields import GF
88

99

commpy/channelcoding/tests/test_ldpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
22
# License: BSD 3-Clause
33

44
import os

commpy/channelcoding/turbo.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
2-
3-
# Authors: Veeresh Taranalli <veeresht@gmail.com>
1+
# Authors: CommPy contributors
42
# License: BSD 3-Clause
53

64
""" Turbo Codes """
75

8-
from numpy import array, append, zeros, exp, pi, log, empty
9-
from commpy.channelcoding import Trellis, conv_encode
10-
from commpy.utilities import dec2bitarray, bitarray2dec
6+
from numpy import array, zeros, exp, log, empty
7+
8+
from commpy.channelcoding import conv_encode
9+
from commpy.utilities import dec2bitarray
10+
11+
1112
#from commpy.channelcoding.map_c import backward_recursion, forward_recursion_decoding
1213

1314
def turbo_encode(msg_bits, trellis1, trellis2, interleaver):

commpy/channels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Authors: Veeresh Taranalli <veeresht@gmail.com> & Bastien Trotobas <bastien.trotobas@gmail.com>
1+
# Authors: CommPy contributors
22
# License: BSD 3-Clause
33

44
"""

0 commit comments

Comments
 (0)