Skip to content

Commit 5f6cbf3

Browse files
Merge branch 'veeresht:master' into master
2 parents bda9beb + 9496b1f commit 5f6cbf3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ Citing CommPy
126126
-------------
127127
If you use CommPy for a publication, presentation or a demo, a citation would be greatly appreciated. A citation example is presented here and we suggest to had the revision or version number and the date:
128128

129-
V. Taranalli, B. Trotobas, and contributors, CommPy: Digital Communication with Python. [Online]. Available: github.com/veeresht/CommPy
129+
V. Taranalli, B. Trotobas, and contributors, "CommPy: Digital Communication with Python". [Online]. Available: github.com/veeresht/CommPy
130130

131131

132132
I would also greatly appreciate your feedback if you have found CommPy useful. Just send me a mail: [email protected]
133133

134-
For more details on CommPy, please visit http://veeresht.github.com/CommPy
134+
For more details on CommPy, please visit https://veeresht.info/CommPy/

commpy/channels.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from __future__ import division, print_function # Python 2 compatibility
2121

22-
from numpy import complex, abs, sqrt, sum, zeros, identity, hstack, einsum, trace, kron, absolute, fromiter, array, exp, \
22+
from numpy import abs, sqrt, sum, zeros, identity, hstack, einsum, trace, kron, absolute, fromiter, array, exp, \
2323
pi, cos
2424
from numpy.random import randn, random, standard_normal
2525
from scipy.linalg import sqrtm

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#This is a list of files to install, and where
1717
#(relative to the 'root' dir, where setup.py is)
1818
#You could be more specific.
19-
files = ["channelcoding/*, channelcoding/tests/*, tests/*, channelcoding/designs/ldpc/gallager/*, channelcoding/designs/ldpc/wimax/*"]
19+
files = ["channelcoding/*", "channelcoding/tests/*", "tests/*", "channelcoding/designs/ldpc/gallager/*", "channelcoding/designs/ldpc/wimax/*"]
2020

2121
setup(
2222
name=DISTNAME,

0 commit comments

Comments
 (0)