mirror of
https://github.com/jhshi/openofdm.git
synced 2025-06-17 06:38:18 +00:00
scripts init
This commit is contained in:
27
scripts/commpy/__init__.py
Normal file
27
scripts/commpy/__init__.py
Normal file
@ -0,0 +1,27 @@
|
||||
"""
|
||||
CommPy
|
||||
================================================
|
||||
|
||||
|
||||
Contents
|
||||
--------
|
||||
|
||||
Subpackages
|
||||
-----------
|
||||
::
|
||||
|
||||
channelcoding --- Channel Coding Algorithms [*]
|
||||
|
||||
"""
|
||||
#from channelcoding import *
|
||||
from commpy.filters import *
|
||||
from commpy.modulation import *
|
||||
from commpy.impairments import *
|
||||
from commpy.sequences import *
|
||||
from commpy.channels import *
|
||||
|
||||
try:
|
||||
from numpy.testing import Tester
|
||||
test = Tester().test
|
||||
except:
|
||||
pass
|
Reference in New Issue
Block a user