資源簡介
經驗模式識別的python工具包,需要的東西已經打包好了,安裝方法見我的博客。

代碼片段和文件信息
#!/usr/bin/env?python
VERSION=“0.2.7“
DEscriptION?=?“Implementation?of?the?Empirical?Mode?Decomposition?(EMD)?and?its?variations“
def?main():
????import?io
????from?setuptools?import?setup
????with?io.open(‘README.md‘?encoding=“utf8“)?as?fp:
????????long_description?=?fp.read().strip()
????with?open(‘requirements.txt‘)?as?f:
????????required?=?f.read().splitlines()
????classifiers=[
????????“Intended?Audience?::?Information?Technology“
????????“Intended?Audience?::?Science/Research“
????????“Topic?::?Scientific/Engineering“
????????“Topic?::?Scientific/Engineering?::?Information?Analysis“
????????“Topic?::?Scientific/Engineering?::?Mathematics“
????]
????setup_params?=?dict(
????????name=“EMD-signal“
????????version=VERSION
????????description=DEscriptION
????????long_description=long_description
????????long_description_content_type=“text/markdown“
????????url=“https://github.com/laszukdawid/PyEMD“
????????author=“Dawid?Laszuk“
????????author_email=“dawid@lasz.uk“
????????license=“Apache-2.0“
????????classifiers=classifiers
????????keywords=“signal?decomposition?data?analysis“
????????packages=[“PyEMD“]
????????install_requires=required
????????python_requires=‘>=2.6?!=3.0.*?!=3.1.*?!=3.2.*?<4‘
????????test_suite=“PyEMD.tests“
????)
????dist?=?setup(**setup_params)
if?__name__==“__main__“:
????main()
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-08-07?04:18??PyEMD-master\
?????文件?????????567??2019-08-07?04:18??PyEMD-master\.coveragerc
?????文件??????????17??2019-08-07?04:18??PyEMD-master\.gitignore
?????文件?????????424??2019-08-07?04:18??PyEMD-master\.travis.yml
?????文件?????????553??2019-08-07?04:18??PyEMD-master\LICENSE.txt
?????文件?????????187??2019-08-07?04:18??PyEMD-master\MANIFEST.in
?????目錄???????????0??2019-08-07?04:18??PyEMD-master\PyEMD\
?????文件??????????20??2019-08-07?04:18??PyEMD-master\PyEMD\.gitignore
?????文件???????10755??2019-08-07?04:18??PyEMD-master\PyEMD\BEMD.py
?????文件???????10882??2019-08-07?04:18??PyEMD-master\PyEMD\CEEMDAN.py
?????文件????????7680??2019-08-07?04:18??PyEMD-master\PyEMD\EEMD.py
?????文件???????32380??2019-08-07?04:18??PyEMD-master\PyEMD\EMD.py
?????文件???????13989??2019-08-07?04:18??PyEMD-master\PyEMD\EMD2d.py
?????文件???????22525??2019-08-07?04:18??PyEMD-master\PyEMD\EMD_matlab.py
?????文件?????????188??2019-08-07?04:18??PyEMD-master\PyEMD\__init__.py
?????文件????????1264??2019-08-07?04:18??PyEMD-master\PyEMD\splines.py
?????目錄???????????0??2019-08-07?04:18??PyEMD-master\PyEMD\tests\
?????文件???????????0??2019-08-07?04:18??PyEMD-master\PyEMD\tests\__init__.py
?????文件?????????287??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_all.py
?????文件????????3675??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_bemd.py
?????文件????????5501??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_ceemdan.py
?????文件????????3931??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_eemd.py
?????文件????????5955??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_emd.py
?????文件????????9704??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_emd2d.py
?????文件???????10601??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_extrema.py
?????文件????????3266??2019-08-07?04:18??PyEMD-master\PyEMD\tests\test_splines.py
?????文件????????4440??2019-08-07?04:18??PyEMD-master\PyEMD\visualisation.py
?????文件????????5161??2019-08-07?04:18??PyEMD-master\README.md
?????文件???????????0??2019-08-07?04:18??PyEMD-master\__init__.py
?????文件?????????389??2019-08-07?04:18??PyEMD-master\codecov.yml
?????目錄???????????0??2019-08-07?04:18??PyEMD-master\doc\
............此處省略27個文件信息
評論
共有 條評論