⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 __init__.py

📁 著名的ldpc编解码的资料及源代码
💻 PY
字号:
"""The pycodes module contains various routines for error correctionand data compression codes in python.Currently low density parity check codes and their duals aresupported by the pycodes.pyLDPC package.Various utilities and tests are available in pycodes.tests andpycodes.utils.See the doc strings for these sub-modules for more details."""def TestExamples():    """    The following function tests all the examples in docstrings.    """    import doctest, pycodes, pycodes.pyLDPC    pycodes.__doc__ = __doc__ + '\n' + pycodes.pyLDPC.__doc__    for item in pycodes.pyLDPC.__dict__.keys():        pycodes.__doc__ += '\n' + pycodes.pyLDPC.__dict__[item].__doc__            return doctest.testmod(pycodes)    print 'Tests Passed.'

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -