PySDKit 0.4.51__tar.gz → 0.4.53__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pysdkit-0.4.51 → pysdkit-0.4.53}/PKG-INFO +57 -57
- {pysdkit-0.4.51 → pysdkit-0.4.53}/PySDKit.egg-info/PKG-INFO +57 -57
- {pysdkit-0.4.51 → pysdkit-0.4.53}/PySDKit.egg-info/SOURCES.txt +11 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/README.md +56 -56
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/__init__.py +16 -1
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/__init__.py +6 -0
- pysdkit-0.4.53/pysdkit/_emd/apitmemd.py +661 -0
- pysdkit-0.4.53/pysdkit/_emd/nstemd.py +609 -0
- pysdkit-0.4.53/pysdkit/_emd/online_emd.py +797 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/__init__.py +8 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_loaders.py +78 -0
- pysdkit-0.4.53/pysdkit/data/apitmemd_section_2b.npy +0 -0
- pysdkit-0.4.53/pysdkit/data/apitmemd_section_3a.npy +0 -0
- pysdkit-0.4.53/pysdkit/data/apitmemd_section_3b.npy +0 -0
- pysdkit-0.4.53/pysdkit/data/oemd_ecg.npy +0 -0
- pysdkit-0.4.53/pysdkit/tests/test_apitmemd.py +417 -0
- pysdkit-0.4.53/pysdkit/tests/test_nstemd.py +323 -0
- pysdkit-0.4.53/pysdkit/tests/test_onlineemd.py +333 -0
- pysdkit-0.4.53/pysdkit/utils/_pca.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_process.py +2 -2
- {pysdkit-0.4.51 → pysdkit-0.4.53}/LICENSE +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/PySDKit.egg-info/dependency_links.txt +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/PySDKit.egg-info/requires.txt +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/PySDKit.egg-info/top_level.txt +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pyproject.toml +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_acmd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_acmd/acmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_acmd/ba_acmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_acmd/dd_acmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/_find_extrema.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/_prepare_points.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/_splines.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/ceemdan.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/eemd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/emd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/esmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/hht/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/hht/frequency.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/hht/hht.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/memd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/remd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/semd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd/tvf_emd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd2d/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd2d/bmemd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_emd2d/emd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_ewt/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_ewt/efd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_ewt/ewt.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_ewt/ewt2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_faemd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_faemd/extrema.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_faemd/faemd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_faemd/faemd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_faemd/faemd3d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_faemd/filter.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_gdmd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_gdmd/agncmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_gdmd/gdmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_gdmd/ivgnmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_gdmd/vgnmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_imd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_imd/apmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_imd/imd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_jmd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_jmd/jmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_jmd/mjmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_jmd/sjmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_lmd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_lmd/lmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_lmd/rlmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_osd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_osd/components.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_osd/osd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_osd/swd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tfa/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tfa/vtfmtd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tid/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tid/alif.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tid/fmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tid/hvd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tid/itd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tid/iterative_filtering.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_tid/ssa.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/base.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/mvmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/na_mvmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/namvmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/ovmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/stvmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/svmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/vmd_c.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/vmd_f.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd/vme.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd2d/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd2d/cvmd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vmd2d/vmd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vncmd/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vncmd/avncmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vncmd/incmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vncmd/stnbmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/_vncmd/vncmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_add_noise.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_assets.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_cube.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_generator.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_image.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_models.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_test_univariate.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/_time_series.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/dual_signal_noise.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/ecg_055m.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/fmd_demo.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/gearbox_fault_snippet.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/input_sig.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/map2.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/memd_syn_12channel.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/memd_syn_16channel.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/memd_syn_hex.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/memd_taichi_hex.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/prefixed_double_filter.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/single_nsignal.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/texture.txt +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/data/vmd_example.npy +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/entropy/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/entropy/_approxiamte_entropy.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/entropy/_permutation_entropy.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/entropy/_sample_entropy.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/models/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/models/_base.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/models/_kmeans.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/models/_knn.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/models/_pca.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/plot/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/plot/_fourier_spectra.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/plot/_functions.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/plot/_plot_images.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/plot/_plot_imfs.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/plot/_plot_signal.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/data/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/data/test_generator_cube.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/data/test_generator_image.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/data/test_generator_signal.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/data/test_generator_univariate_signal.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/models/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/models/test_knn.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/models/test_pca.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/run_all.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_acmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_agncmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_alif.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_apmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_avncmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_baacmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_bmemd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_ceemdan.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_cvmd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_ddacmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_eemd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_efd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_emd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_emd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_esmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_ewt.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_ewt2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_faemd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_faemd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_faemd3d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_fmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_gdmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_hht.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_hvd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_imd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_itd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_ivgnmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_jmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_lmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_memd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_moving_decomp.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_mstl.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_mvmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_osd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_ovmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_remd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_rlmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_semd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_sjmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_ssa.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_stl.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_stnbmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_stvmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_svmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_swd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_tvfemd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_vgnmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_vmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_vmd2d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_vme.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_vncmd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tests/test_vtfmtd.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tsa/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tsa/_dtw.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tsa/_moving_decomp.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tsa/_mstl.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/tsa/_stl.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/__init__.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_correlation.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_diagnalization.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_differ.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_fft.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_function.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_hilbert.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_instantaneous.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_kernel_matrix.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_mirror.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/pysdkit/utils/_smooth1d.py +0 -0
- {pysdkit-0.4.51 → pysdkit-0.4.53}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PySDKit
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.53
|
|
4
4
|
Summary: A Python library for signal decomposition algorithms with a unified interface.
|
|
5
5
|
Author: Whenxuan Wang, RuiZhe Wang, Rongkun Zhu, Kai Wu, Lei Wang, josefinez, Deeksha Manjunath, Yuan Feng, WenTong Zhao, JacktheFowler
|
|
6
6
|
Maintainer-email: Whenxuan Wang <wwhenxuan@gmail.com>, RuiZhe Wang <3133986068@qq.com>
|
|
@@ -147,62 +147,62 @@ plot_IMFs(signal, IMFs) # per-channel panels
|
|
|
147
147
|
|
|
148
148
|
`PySDKit` is still under development. We are currently working on reproducing the signal decomposition algorithms in the table below, including not only common decomposition algorithms for `univariate signals` such as EMD, VMD, OVMD, AVNCMD, ALIF and APMD, but also decomposition algorithms for `multivariate signals` such as MEMD and MVMD. We will also further reproduce the decomposition algorithms for `two-dimensional images` to make PySDKit not only suitable for signal processing, but also for image analysis and understanding. See [`Mission`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/README.md) for the reasons why we developed PySDKit.
|
|
149
149
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
| [`
|
|
155
|
-
| [`
|
|
156
|
-
| [`
|
|
157
|
-
| [`
|
|
158
|
-
| [`
|
|
159
|
-
| [`
|
|
160
|
-
| [`
|
|
161
|
-
| [`
|
|
162
|
-
| [`
|
|
163
|
-
| [`
|
|
164
|
-
| [`
|
|
165
|
-
| [`
|
|
166
|
-
| [`
|
|
167
|
-
| [`
|
|
168
|
-
| [`
|
|
169
|
-
| [`
|
|
170
|
-
| [`
|
|
171
|
-
| [`
|
|
172
|
-
| [`
|
|
173
|
-
| [`
|
|
174
|
-
| [`
|
|
175
|
-
| [`
|
|
176
|
-
| [`
|
|
177
|
-
| [`
|
|
178
|
-
| [`
|
|
179
|
-
| [`
|
|
180
|
-
| [`
|
|
181
|
-
| [`
|
|
182
|
-
| [`
|
|
183
|
-
| [`
|
|
184
|
-
| [`
|
|
185
|
-
| [`
|
|
186
|
-
| [`
|
|
187
|
-
| [`
|
|
188
|
-
| [`AVNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/avncmd.py) (Adaptive Variational Nonlinear Chirp Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/abstract/document/9746147) | [[code]](https://github.com/HauLiang/AVNCMD) |
|
|
189
|
-
| [`ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/acmd.py) (Adaptive Chirp Mode Decomposition) | [[paper]]() | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition?s_tid=srchtitle) |
|
|
190
|
-
| [`BA-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/ba_acmd.py) (Bandwidth-aware Adaptive Chirp Mode Decomposition) | [[paper]](https://journals.sagepub.com/doi/abs/10.1177/14759217231174699) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/132792-bandwidth-aware-adaptive-chirp-mode-decomposition-ba-acmd?s_tid=srchtitle) |
|
|
191
|
-
| [`DD-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/dd_acmd.py) (Data-driven Adaptive Chirp Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327022010652) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition) |
|
|
192
|
-
| [`GDMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/gdmd.py) (Generalized Dispersion Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) | [[code]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) |
|
|
193
|
-
| [`VGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/vgnmd.py) (Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S088832702300821X) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/154792-variational-generalized-nonlinear-mode-decomposition-vgmnd) |
|
|
194
|
-
| [`IVGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/ivgnmd.py) (Improved Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0888327025001086) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/180043-improved-vgnmd) |
|
|
195
|
-
| [`AGNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/agncmd.py) (Adaptive Generalized Dispersive Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X25004031) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/181499-adaptive-generalized-dispersive-mode-decomposition-agdmd) |
|
|
196
|
-
| [`JMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/jmd.py) (Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169388-jump-plus-am-fm-mode-decomposition-jmd?s_tid=prof_contriblnk) |
|
|
197
|
-
| [`MJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/mjmd.py) (Multivariate Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169393-multivariate-jump-plus-am-fm-mode-decomposition-mjmd?s_tid=prof_contriblnk) |
|
|
198
|
-
| [`SJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/sjmd.py) / `SMJMD` (Successive Jump and Mode Decomposition) | [[paper]](https://arxiv.org/abs/2504.08453) | [[code]]() |
|
|
199
|
-
| [`ESMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/esmd.py) (Extreme-Point Symmetric Mode Decomposition) | [[paper]](https://arxiv.org/abs/1303.6540) | [[code]](https://github.com/WuShichao/esmd) |
|
|
200
|
-
|
|
|
201
|
-
| [`VTFMTD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tfa/vftmtd.py) (Variational TF Mode Tracking Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168426001179) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/183389-variational-time-frequency-mode-tracking-decomposition) |
|
|
202
|
-
| [`SWD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/swd.py) (Swarm Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2016.09.004) | [[code]](https://github.com/gkaposto/Swarm-Decomposition) |
|
|
203
|
-
| [`OSD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/osd.py) (Optimization-based Signal Decomposition) | [[paper]](https://web.stanford.edu/~boyd/papers/sig_decomp_mprox.html) | [[code]](https://github.com/cvxgrp/signal-decomposition) |
|
|
204
|
-
| [`STL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_stl.py) (Seasonal-Trend decomposition using LOESS) | [[paper]](https://www.nniiem.ru/file/news/2016/stl-statistical-model.pdf) | [[code]](https://www.statsmodels.org/stable/examples/notebooks/generated/stl_decomposition.html) |
|
|
205
|
-
| [`MSTL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_mstl.py) (Multivariate Seasonal-Trend decomposition using LOESS) | [[paper]](https://arxiv.org/abs/2107.13462) | [[code]](https://github.com/KishManani/MSTL) |
|
|
150
|
+
| Algorithm | Paper | Source | Example |
|
|
151
|
+
| :----------------------------------------------------------: | :----------------------------------------------------------: | :----------------------------------------------------------: | :-----: |
|
|
152
|
+
| [`EMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/emd.py) (Empirical Mode Decomposition) | [[paper]](https://royalsocietypublishing.org/doi/abs/10.1098/rspa.1998.0193) | [[code]](https://www.mathworks.com/help/signal/ref/emd.html) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd/emd.ipynb) |
|
|
153
|
+
| [`EEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/eemd.py) (Ensemble Empirical Mode Decomposition) | [[paper]](https://www.sciencedirect.com/topics/physics-and-astronomy/ensemble-empirical-mode-decomposition) | [[code]](https://github.com/laszukdawid/PyEMD/blob/master/PyEMD/EEMD.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/eemd.ipynb) |
|
|
154
|
+
| [`REMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/remd.py) (Robust Empirical Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0019057821003785) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/70032-robust-empirical-mode-decomposition-remd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/remd.ipynb) |
|
|
155
|
+
| [`CEEMDAN`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/ceemdan.py) (Complete Ensemble EMD with Adaptive Noise) | [[paper]](https://ieeexplore.ieee.org/document/5947265) | [[code]](https://github.com/laszukdawid/PyEMD/blob/master/PyEMD/EEMD.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/ceemdan.ipynb) |
|
|
156
|
+
| [`TVF_EMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/tvf_emd.py) (Time Varying Filter Based EMD) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168417301135) | [[code]](https://github.com/stfbnc/pytvfemd/tree/master) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/tfv_emd.ipynb) |
|
|
157
|
+
| [`MEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/memd.py) (Multivariate Empirical Mode Decomposition) | [[paper]](https://royalsocietypublishing.org/doi/full/10.1098/rspa.2009.0502) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/memd/memd.ipynb) |
|
|
158
|
+
| [`APITMEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/apitmemd.py) (Adaptive-Projection Intrinsically Transformed MEMD) | [[paper]](https://www.commsp.ee.ic.ac.uk/~mandic/research/EMD_Stuff/AH_VG_DL_DPM_APITMEMD_RSTA_2016.pdf) | [[code]](https://www.commsp.ee.ic.ac.uk/~mandic/research/emd.htm) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/memd/apitmemd.ipynb) |
|
|
159
|
+
| [`NSTEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/nstemd.py) (Nonuniformly Sampled Trivariate EMD) | [[paper]](https://ieeexplore.ieee.org/document/7178660) | [[code]](https://www.commsp.ee.ic.ac.uk/~mandic/research/emd.htm) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/nstemd.ipynb) |
|
|
160
|
+
| [`OnlineEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/online_emd.py) (Online Empirical Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/7952969) | [[code]](https://github.com/romain-fontugne/onlineEMD) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/online_emd.ipynb) |
|
|
161
|
+
| [`EMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd2d/emd2d.py) (Empirical Mode Decomposition 2D for images) | [[paper]](http://aquador.vovve.net/IEMD/) | [[code]](http://aquador.vovve.net/IEMD/) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/emd2d.ipynb) |
|
|
162
|
+
| [`BMEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd2d/bmemd.py) (Bidimensional Multivariate Empirical Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/8805082) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/72343-bidimensional-multivariate-empirical-mode-decomposition?s_tid=FX_rc1_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/bmemd.ipynb) |
|
|
163
|
+
| [`FAEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_faemd/faemd.py) (Fast and Adaptive EMD) | [[paper]](https://ieeexplore.ieee.org/document/8447300) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/faemd/faemd.ipynb) |
|
|
164
|
+
| [`FAEMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_faemd/faemd2d.py) (Two-Dimensional Fast and Adaptive EMD) | [[paper]](https://ieeexplore.ieee.org/document/8447300) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/faemd/faemd2d.ipynb) |
|
|
165
|
+
| [`FAEMD3D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_faemd/faemd3d.py) (Three-Dimensional Fast and Adaptive EMD) | [[paper]](https://ieeexplore.ieee.org/document/8447300) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/faemd/faemd3d.ipynb) |
|
|
166
|
+
| [`HVD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/hvd.py) (Hilbert Vibration Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X06001556) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/178804-hilbert-vibration-decomposition?s_tid=FX_rc1_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/hvd.ipynb) |
|
|
167
|
+
| [`ITD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/itd.py) (Intrinsic Time-Scale Decomposition) | [[paper]](https://royalsocietypublishing.org/doi/10.1098/rspa.2006.1761) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/69380-intrinsic-time-scale-decomposition-itd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/itd.ipynb) |
|
|
168
|
+
| [`ALIF`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/alif.py) (Adaptive Local Iterative Filtering) | [[paper]](https://arxiv.org/abs/1411.6051) | [[code]](https://github.com/Cicone/ALIF) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/alif.ipynb) |
|
|
169
|
+
| [`IMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_imd/imd.py) (Impulsive Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0888327024001250) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/182635-impulsive-mode-decomposition?s_tid=FX_rc3_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/imd/imd.ipynb) |
|
|
170
|
+
| [`APMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_imd/apmd.py) (Adaptive Polymorphic Mode Decomposition) | [[paper]](https://doi.org/10.1016/j.dsp.2024.104913) | [[code]](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_imd/apmd.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/imd/apmd.ipynb) |
|
|
171
|
+
| [`LMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_lmd/lmd.py) (Local Mean Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S1051200418308133?via%3Dihub) | [[code]](https://github.com/shownlin/PyLMD/blob/master/PyLMD/LMD.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/lmd/lmd.ipynb) |
|
|
172
|
+
| [`RLMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_lmd/rlmd.py) (Robust Local Mean Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327017301619) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/66935-robust-local-mean-decomposition-rlmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/lmd/rlmd.ipynb) |
|
|
173
|
+
| [`FMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/fmd.py) (Feature Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/9732251) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/108099-feature-mode-decomposition-fmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/fmd.ipynb) |
|
|
174
|
+
| [`SSA`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/ssa.py) (Singular Spectral Analysis) | [[paper]](https://orca.cardiff.ac.uk/id/eprint/15208/1/Zhiglavsky_SSA_encyclopedia.pdf) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/58967-singular-spectrum-analysis-beginners-guide) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ssa/ssa.ipynb) |
|
|
175
|
+
| [`EWT`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_ewt/ewt.py) (Empirical Wavelet Transform) | [[paper]](https://ieeexplore.ieee.org/document/6522142) | [[code]](https://www.mathworks.com/help/wavelet/ug/empirical-wavelet-transform.html) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ewt/ewt_ewt2d.ipynb) |
|
|
176
|
+
| [`EFD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_ewt/efd.py) (Empirical Fourier Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327021005355) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/97747-empirical-fourier-decomposition-efd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ewt/efd.ipynb) |
|
|
177
|
+
| [`EWT2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_ewt/ewt2d.py) (2D Empirical Wavelet Transform) | [[paper]](https://arxiv.org/abs/2405.06188) | [[code]](https://github.com/bhurat/EWT-Python) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ewt/ewt_ewt2d.ipynb) |
|
|
178
|
+
| [`VMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/vmd_c.py) (Variational Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/6655981) | [[code]](https://github.com/vrcarva/vmdpy) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/vmd.ipynb) |
|
|
179
|
+
| [`MVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/mvmd.py) (Multivariate Variational Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/8890883) | [[code]](https://github.com/yunyueye/MVMD) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/mvmd.ipynb) |
|
|
180
|
+
| [`VMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd2d/vmd2d.py) (Two-Dimensional Variational Mode Decomposition) | [[paper]](https://ww3.math.ucla.edu/camreport/cam14-16.pdf) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/45918-two-dimensional-variational-mode-decomposition?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/vmd2d.ipynb) |
|
|
181
|
+
| [`CVMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd2d/cvmd2d.py) (Two-Dimensional Compact Variational Mode Decomposition) | [[paper]](https://link.springer.com/article/10.1007/s10851-017-0710-z) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/67285-two-dimensional-compact-variational-mode-decomposition-2d-tv-vmd?s_tid=FX_rc2_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/cvmd2d.ipynb) |
|
|
182
|
+
| [`VME`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/vme.py) (Variational Mode Extraction) | [[paper]](https://ieeexplore.ieee.org/document/7997854) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/76003-variational-mode-extraction-vme-m?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/vme.ipynb) |
|
|
183
|
+
| [`OVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/ovmd.py) (Orthogonalized Variational Mode Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2025.110251) | [[code]](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/ovmd.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/ovmd.ipynb) |
|
|
184
|
+
| [`SVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/svmd.py) (Successive Variational Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168420301535) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/98649-successive-variational-mode-decomposition-svmd-m?s_tid=FX_rc3_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/svmd.ipynb) |
|
|
185
|
+
| [`STVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/stvmd.py) (Short Time Variational Mode Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2025.110203) | [[code]](https://github.com/plustar/Short-Time-Variational-Mode-Decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/stvmd.ipynb) |
|
|
186
|
+
| [`VNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/vncmd.py) (Variational Nonlinear Chirp Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/7990179) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/64292-variational-nonlinear-chirp-mode-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vncmd/vncmd.ipynb) |
|
|
187
|
+
| [`INCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/incmd.py) (Iterative Nonlinear Chirp Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X2030403X?via%3Dihub) | [[code]](https://github.com/sheadan/IterativeNCMD) | [[notebook]]() |
|
|
188
|
+
| [`AVNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/avncmd.py) (Adaptive Variational Nonlinear Chirp Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/abstract/document/9746147) | [[code]](https://github.com/HauLiang/AVNCMD) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vncmd/avncmd.ipynb) |
|
|
189
|
+
| [`ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/acmd.py) (Adaptive Chirp Mode Decomposition) | [[paper]]() | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/acmd/acmd.ipynb) |
|
|
190
|
+
| [`BA-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/ba_acmd.py) (Bandwidth-aware Adaptive Chirp Mode Decomposition) | [[paper]](https://journals.sagepub.com/doi/abs/10.1177/14759217231174699) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/132792-bandwidth-aware-adaptive-chirp-mode-decomposition-ba-acmd?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/acmd/ba_acmd.ipynb) |
|
|
191
|
+
| [`DD-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/dd_acmd.py) (Data-driven Adaptive Chirp Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327022010652) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/acmd/dd_acmd.ipynb) |
|
|
192
|
+
| [`GDMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/gdmd.py) (Generalized Dispersion Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) | [[code]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/gdmd.ipynb) |
|
|
193
|
+
| [`VGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/vgnmd.py) (Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S088832702300821X) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/154792-variational-generalized-nonlinear-mode-decomposition-vgmnd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/vgnmd.ipynb) |
|
|
194
|
+
| [`IVGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/ivgnmd.py) (Improved Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0888327025001086) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/180043-improved-vgnmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/ivgnmd.ipynb) |
|
|
195
|
+
| [`AGNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/agncmd.py) (Adaptive Generalized Dispersive Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X25004031) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/181499-adaptive-generalized-dispersive-mode-decomposition-agdmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/agncmd.ipynb) |
|
|
196
|
+
| [`JMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/jmd.py) (Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169388-jump-plus-am-fm-mode-decomposition-jmd?s_tid=prof_contriblnk) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/jmd/jmd.ipynb) |
|
|
197
|
+
| [`MJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/mjmd.py) (Multivariate Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169393-multivariate-jump-plus-am-fm-mode-decomposition-mjmd?s_tid=prof_contriblnk) | [[notebook]]() |
|
|
198
|
+
| [`SJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/sjmd.py) / `SMJMD` (Successive Jump and Mode Decomposition) | [[paper]](https://arxiv.org/abs/2504.08453) | [[code]]() | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/jmd/sjmd.ipynb) |
|
|
199
|
+
| [`ESMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/esmd.py) (Extreme-Point Symmetric Mode Decomposition) | [[paper]](https://arxiv.org/abs/1303.6540) | [[code]](https://github.com/WuShichao/esmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/esmd.ipynb) |
|
|
200
|
+
| [`STNBMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/stnbmd.py) (Short-Time Narrow-Band Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X16002443?via%3Dihub) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/56226-short-time-narrow-band-mode-decomposition-stnbmd-toolbox) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vncmd/stnbmd.ipynb) |
|
|
201
|
+
| [`VTFMTD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tfa/vftmtd.py) (Variational TF Mode Tracking Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168426001179) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/183389-variational-time-frequency-mode-tracking-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/tfa/vtfmtd.ipynb) |
|
|
202
|
+
| [`SWD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/swd.py) (Swarm Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2016.09.004) | [[code]](https://github.com/gkaposto/Swarm-Decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/osd/swd.ipynb) |
|
|
203
|
+
| [`OSD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/osd.py) (Optimization-based Signal Decomposition) | [[paper]](https://web.stanford.edu/~boyd/papers/sig_decomp_mprox.html) | [[code]](https://github.com/cvxgrp/signal-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/osd/osd_intro.ipynb) |
|
|
204
|
+
| [`STL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_stl.py) (Seasonal-Trend decomposition using LOESS) | [[paper]](https://www.nniiem.ru/file/news/2016/stl-statistical-model.pdf) | [[code]](https://www.statsmodels.org/stable/examples/notebooks/generated/stl_decomposition.html) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/tsa/stl.ipynb) |
|
|
205
|
+
| [`MSTL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_mstl.py) (Multivariate Seasonal-Trend decomposition using LOESS) | [[paper]](https://arxiv.org/abs/2107.13462) | [[code]](https://github.com/KishManani/MSTL) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/tsa/mstl.ipynb) |
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PySDKit
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.53
|
|
4
4
|
Summary: A Python library for signal decomposition algorithms with a unified interface.
|
|
5
5
|
Author: Whenxuan Wang, RuiZhe Wang, Rongkun Zhu, Kai Wu, Lei Wang, josefinez, Deeksha Manjunath, Yuan Feng, WenTong Zhao, JacktheFowler
|
|
6
6
|
Maintainer-email: Whenxuan Wang <wwhenxuan@gmail.com>, RuiZhe Wang <3133986068@qq.com>
|
|
@@ -147,62 +147,62 @@ plot_IMFs(signal, IMFs) # per-channel panels
|
|
|
147
147
|
|
|
148
148
|
`PySDKit` is still under development. We are currently working on reproducing the signal decomposition algorithms in the table below, including not only common decomposition algorithms for `univariate signals` such as EMD, VMD, OVMD, AVNCMD, ALIF and APMD, but also decomposition algorithms for `multivariate signals` such as MEMD and MVMD. We will also further reproduce the decomposition algorithms for `two-dimensional images` to make PySDKit not only suitable for signal processing, but also for image analysis and understanding. See [`Mission`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/README.md) for the reasons why we developed PySDKit.
|
|
149
149
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
| [`
|
|
155
|
-
| [`
|
|
156
|
-
| [`
|
|
157
|
-
| [`
|
|
158
|
-
| [`
|
|
159
|
-
| [`
|
|
160
|
-
| [`
|
|
161
|
-
| [`
|
|
162
|
-
| [`
|
|
163
|
-
| [`
|
|
164
|
-
| [`
|
|
165
|
-
| [`
|
|
166
|
-
| [`
|
|
167
|
-
| [`
|
|
168
|
-
| [`
|
|
169
|
-
| [`
|
|
170
|
-
| [`
|
|
171
|
-
| [`
|
|
172
|
-
| [`
|
|
173
|
-
| [`
|
|
174
|
-
| [`
|
|
175
|
-
| [`
|
|
176
|
-
| [`
|
|
177
|
-
| [`
|
|
178
|
-
| [`
|
|
179
|
-
| [`
|
|
180
|
-
| [`
|
|
181
|
-
| [`
|
|
182
|
-
| [`
|
|
183
|
-
| [`
|
|
184
|
-
| [`
|
|
185
|
-
| [`
|
|
186
|
-
| [`
|
|
187
|
-
| [`
|
|
188
|
-
| [`AVNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/avncmd.py) (Adaptive Variational Nonlinear Chirp Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/abstract/document/9746147) | [[code]](https://github.com/HauLiang/AVNCMD) |
|
|
189
|
-
| [`ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/acmd.py) (Adaptive Chirp Mode Decomposition) | [[paper]]() | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition?s_tid=srchtitle) |
|
|
190
|
-
| [`BA-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/ba_acmd.py) (Bandwidth-aware Adaptive Chirp Mode Decomposition) | [[paper]](https://journals.sagepub.com/doi/abs/10.1177/14759217231174699) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/132792-bandwidth-aware-adaptive-chirp-mode-decomposition-ba-acmd?s_tid=srchtitle) |
|
|
191
|
-
| [`DD-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/dd_acmd.py) (Data-driven Adaptive Chirp Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327022010652) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition) |
|
|
192
|
-
| [`GDMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/gdmd.py) (Generalized Dispersion Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) | [[code]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) |
|
|
193
|
-
| [`VGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/vgnmd.py) (Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S088832702300821X) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/154792-variational-generalized-nonlinear-mode-decomposition-vgmnd) |
|
|
194
|
-
| [`IVGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/ivgnmd.py) (Improved Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0888327025001086) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/180043-improved-vgnmd) |
|
|
195
|
-
| [`AGNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/agncmd.py) (Adaptive Generalized Dispersive Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X25004031) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/181499-adaptive-generalized-dispersive-mode-decomposition-agdmd) |
|
|
196
|
-
| [`JMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/jmd.py) (Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169388-jump-plus-am-fm-mode-decomposition-jmd?s_tid=prof_contriblnk) |
|
|
197
|
-
| [`MJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/mjmd.py) (Multivariate Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169393-multivariate-jump-plus-am-fm-mode-decomposition-mjmd?s_tid=prof_contriblnk) |
|
|
198
|
-
| [`SJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/sjmd.py) / `SMJMD` (Successive Jump and Mode Decomposition) | [[paper]](https://arxiv.org/abs/2504.08453) | [[code]]() |
|
|
199
|
-
| [`ESMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/esmd.py) (Extreme-Point Symmetric Mode Decomposition) | [[paper]](https://arxiv.org/abs/1303.6540) | [[code]](https://github.com/WuShichao/esmd) |
|
|
200
|
-
|
|
|
201
|
-
| [`VTFMTD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tfa/vftmtd.py) (Variational TF Mode Tracking Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168426001179) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/183389-variational-time-frequency-mode-tracking-decomposition) |
|
|
202
|
-
| [`SWD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/swd.py) (Swarm Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2016.09.004) | [[code]](https://github.com/gkaposto/Swarm-Decomposition) |
|
|
203
|
-
| [`OSD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/osd.py) (Optimization-based Signal Decomposition) | [[paper]](https://web.stanford.edu/~boyd/papers/sig_decomp_mprox.html) | [[code]](https://github.com/cvxgrp/signal-decomposition) |
|
|
204
|
-
| [`STL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_stl.py) (Seasonal-Trend decomposition using LOESS) | [[paper]](https://www.nniiem.ru/file/news/2016/stl-statistical-model.pdf) | [[code]](https://www.statsmodels.org/stable/examples/notebooks/generated/stl_decomposition.html) |
|
|
205
|
-
| [`MSTL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_mstl.py) (Multivariate Seasonal-Trend decomposition using LOESS) | [[paper]](https://arxiv.org/abs/2107.13462) | [[code]](https://github.com/KishManani/MSTL) |
|
|
150
|
+
| Algorithm | Paper | Source | Example |
|
|
151
|
+
| :----------------------------------------------------------: | :----------------------------------------------------------: | :----------------------------------------------------------: | :-----: |
|
|
152
|
+
| [`EMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/emd.py) (Empirical Mode Decomposition) | [[paper]](https://royalsocietypublishing.org/doi/abs/10.1098/rspa.1998.0193) | [[code]](https://www.mathworks.com/help/signal/ref/emd.html) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd/emd.ipynb) |
|
|
153
|
+
| [`EEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/eemd.py) (Ensemble Empirical Mode Decomposition) | [[paper]](https://www.sciencedirect.com/topics/physics-and-astronomy/ensemble-empirical-mode-decomposition) | [[code]](https://github.com/laszukdawid/PyEMD/blob/master/PyEMD/EEMD.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/eemd.ipynb) |
|
|
154
|
+
| [`REMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/remd.py) (Robust Empirical Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0019057821003785) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/70032-robust-empirical-mode-decomposition-remd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/remd.ipynb) |
|
|
155
|
+
| [`CEEMDAN`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/ceemdan.py) (Complete Ensemble EMD with Adaptive Noise) | [[paper]](https://ieeexplore.ieee.org/document/5947265) | [[code]](https://github.com/laszukdawid/PyEMD/blob/master/PyEMD/EEMD.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/ceemdan.ipynb) |
|
|
156
|
+
| [`TVF_EMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/tvf_emd.py) (Time Varying Filter Based EMD) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168417301135) | [[code]](https://github.com/stfbnc/pytvfemd/tree/master) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/tfv_emd.ipynb) |
|
|
157
|
+
| [`MEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/memd.py) (Multivariate Empirical Mode Decomposition) | [[paper]](https://royalsocietypublishing.org/doi/full/10.1098/rspa.2009.0502) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/memd/memd.ipynb) |
|
|
158
|
+
| [`APITMEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/apitmemd.py) (Adaptive-Projection Intrinsically Transformed MEMD) | [[paper]](https://www.commsp.ee.ic.ac.uk/~mandic/research/EMD_Stuff/AH_VG_DL_DPM_APITMEMD_RSTA_2016.pdf) | [[code]](https://www.commsp.ee.ic.ac.uk/~mandic/research/emd.htm) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/memd/apitmemd.ipynb) |
|
|
159
|
+
| [`NSTEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/nstemd.py) (Nonuniformly Sampled Trivariate EMD) | [[paper]](https://ieeexplore.ieee.org/document/7178660) | [[code]](https://www.commsp.ee.ic.ac.uk/~mandic/research/emd.htm) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/nstemd.ipynb) |
|
|
160
|
+
| [`OnlineEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/online_emd.py) (Online Empirical Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/7952969) | [[code]](https://github.com/romain-fontugne/onlineEMD) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/online_emd.ipynb) |
|
|
161
|
+
| [`EMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd2d/emd2d.py) (Empirical Mode Decomposition 2D for images) | [[paper]](http://aquador.vovve.net/IEMD/) | [[code]](http://aquador.vovve.net/IEMD/) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/emd2d.ipynb) |
|
|
162
|
+
| [`BMEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd2d/bmemd.py) (Bidimensional Multivariate Empirical Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/8805082) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/72343-bidimensional-multivariate-empirical-mode-decomposition?s_tid=FX_rc1_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/bmemd.ipynb) |
|
|
163
|
+
| [`FAEMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_faemd/faemd.py) (Fast and Adaptive EMD) | [[paper]](https://ieeexplore.ieee.org/document/8447300) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/faemd/faemd.ipynb) |
|
|
164
|
+
| [`FAEMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_faemd/faemd2d.py) (Two-Dimensional Fast and Adaptive EMD) | [[paper]](https://ieeexplore.ieee.org/document/8447300) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/faemd/faemd2d.ipynb) |
|
|
165
|
+
| [`FAEMD3D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_faemd/faemd3d.py) (Three-Dimensional Fast and Adaptive EMD) | [[paper]](https://ieeexplore.ieee.org/document/8447300) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/71270-fast-and-adaptive-multivariate-and-multidimensional-emd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/faemd/faemd3d.ipynb) |
|
|
166
|
+
| [`HVD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/hvd.py) (Hilbert Vibration Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X06001556) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/178804-hilbert-vibration-decomposition?s_tid=FX_rc1_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/hvd.ipynb) |
|
|
167
|
+
| [`ITD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/itd.py) (Intrinsic Time-Scale Decomposition) | [[paper]](https://royalsocietypublishing.org/doi/10.1098/rspa.2006.1761) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/69380-intrinsic-time-scale-decomposition-itd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/itd.ipynb) |
|
|
168
|
+
| [`ALIF`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/alif.py) (Adaptive Local Iterative Filtering) | [[paper]](https://arxiv.org/abs/1411.6051) | [[code]](https://github.com/Cicone/ALIF) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/alif.ipynb) |
|
|
169
|
+
| [`IMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_imd/imd.py) (Impulsive Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0888327024001250) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/182635-impulsive-mode-decomposition?s_tid=FX_rc3_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/imd/imd.ipynb) |
|
|
170
|
+
| [`APMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_imd/apmd.py) (Adaptive Polymorphic Mode Decomposition) | [[paper]](https://doi.org/10.1016/j.dsp.2024.104913) | [[code]](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_imd/apmd.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/imd/apmd.ipynb) |
|
|
171
|
+
| [`LMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_lmd/lmd.py) (Local Mean Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S1051200418308133?via%3Dihub) | [[code]](https://github.com/shownlin/PyLMD/blob/master/PyLMD/LMD.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/lmd/lmd.ipynb) |
|
|
172
|
+
| [`RLMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_lmd/rlmd.py) (Robust Local Mean Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327017301619) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/66935-robust-local-mean-decomposition-rlmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/lmd/rlmd.ipynb) |
|
|
173
|
+
| [`FMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/fmd.py) (Feature Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/9732251) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/108099-feature-mode-decomposition-fmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/temp_iter/fmd.ipynb) |
|
|
174
|
+
| [`SSA`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tid/ssa.py) (Singular Spectral Analysis) | [[paper]](https://orca.cardiff.ac.uk/id/eprint/15208/1/Zhiglavsky_SSA_encyclopedia.pdf) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/58967-singular-spectrum-analysis-beginners-guide) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ssa/ssa.ipynb) |
|
|
175
|
+
| [`EWT`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_ewt/ewt.py) (Empirical Wavelet Transform) | [[paper]](https://ieeexplore.ieee.org/document/6522142) | [[code]](https://www.mathworks.com/help/wavelet/ug/empirical-wavelet-transform.html) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ewt/ewt_ewt2d.ipynb) |
|
|
176
|
+
| [`EFD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_ewt/efd.py) (Empirical Fourier Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327021005355) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/97747-empirical-fourier-decomposition-efd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ewt/efd.ipynb) |
|
|
177
|
+
| [`EWT2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_ewt/ewt2d.py) (2D Empirical Wavelet Transform) | [[paper]](https://arxiv.org/abs/2405.06188) | [[code]](https://github.com/bhurat/EWT-Python) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/ewt/ewt_ewt2d.ipynb) |
|
|
178
|
+
| [`VMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/vmd_c.py) (Variational Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/6655981) | [[code]](https://github.com/vrcarva/vmdpy) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/vmd.ipynb) |
|
|
179
|
+
| [`MVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/mvmd.py) (Multivariate Variational Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/8890883) | [[code]](https://github.com/yunyueye/MVMD) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/mvmd.ipynb) |
|
|
180
|
+
| [`VMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd2d/vmd2d.py) (Two-Dimensional Variational Mode Decomposition) | [[paper]](https://ww3.math.ucla.edu/camreport/cam14-16.pdf) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/45918-two-dimensional-variational-mode-decomposition?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/vmd2d.ipynb) |
|
|
181
|
+
| [`CVMD2D`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd2d/cvmd2d.py) (Two-Dimensional Compact Variational Mode Decomposition) | [[paper]](https://link.springer.com/article/10.1007/s10851-017-0710-z) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/67285-two-dimensional-compact-variational-mode-decomposition-2d-tv-vmd?s_tid=FX_rc2_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/image/cvmd2d.ipynb) |
|
|
182
|
+
| [`VME`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/vme.py) (Variational Mode Extraction) | [[paper]](https://ieeexplore.ieee.org/document/7997854) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/76003-variational-mode-extraction-vme-m?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/vme.ipynb) |
|
|
183
|
+
| [`OVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/ovmd.py) (Orthogonalized Variational Mode Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2025.110251) | [[code]](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/ovmd.py) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/ovmd.ipynb) |
|
|
184
|
+
| [`SVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/svmd.py) (Successive Variational Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168420301535) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/98649-successive-variational-mode-decomposition-svmd-m?s_tid=FX_rc3_behav) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/svmd.ipynb) |
|
|
185
|
+
| [`STVMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vmd/stvmd.py) (Short Time Variational Mode Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2025.110203) | [[code]](https://github.com/plustar/Short-Time-Variational-Mode-Decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vmd/stvmd.ipynb) |
|
|
186
|
+
| [`VNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/vncmd.py) (Variational Nonlinear Chirp Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/document/7990179) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/64292-variational-nonlinear-chirp-mode-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vncmd/vncmd.ipynb) |
|
|
187
|
+
| [`INCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/incmd.py) (Iterative Nonlinear Chirp Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X2030403X?via%3Dihub) | [[code]](https://github.com/sheadan/IterativeNCMD) | [[notebook]]() |
|
|
188
|
+
| [`AVNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/avncmd.py) (Adaptive Variational Nonlinear Chirp Mode Decomposition) | [[paper]](https://ieeexplore.ieee.org/abstract/document/9746147) | [[code]](https://github.com/HauLiang/AVNCMD) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vncmd/avncmd.ipynb) |
|
|
189
|
+
| [`ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/acmd.py) (Adaptive Chirp Mode Decomposition) | [[paper]]() | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/acmd/acmd.ipynb) |
|
|
190
|
+
| [`BA-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/ba_acmd.py) (Bandwidth-aware Adaptive Chirp Mode Decomposition) | [[paper]](https://journals.sagepub.com/doi/abs/10.1177/14759217231174699) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/132792-bandwidth-aware-adaptive-chirp-mode-decomposition-ba-acmd?s_tid=srchtitle) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/acmd/ba_acmd.ipynb) |
|
|
191
|
+
| [`DD-ACMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_acmd/dd_acmd.py) (Data-driven Adaptive Chirp Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/abs/pii/S0888327022010652) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/121373-data-driven-adaptive-chirp-mode-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/acmd/dd_acmd.ipynb) |
|
|
192
|
+
| [`GDMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/gdmd.py) (Generalized Dispersion Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) | [[code]](https://www.sciencedirect.com/science/article/pii/S0022460X20306295) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/gdmd.ipynb) |
|
|
193
|
+
| [`VGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/vgnmd.py) (Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S088832702300821X) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/154792-variational-generalized-nonlinear-mode-decomposition-vgmnd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/vgnmd.ipynb) |
|
|
194
|
+
| [`IVGNMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/ivgnmd.py) (Improved Variational Generalized Nonlinear Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0888327025001086) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/180043-improved-vgnmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/ivgnmd.ipynb) |
|
|
195
|
+
| [`AGNCMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_gdmd/agncmd.py) (Adaptive Generalized Dispersive Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X25004031) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/181499-adaptive-generalized-dispersive-mode-decomposition-agdmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/gdmd/agncmd.ipynb) |
|
|
196
|
+
| [`JMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/jmd.py) (Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169388-jump-plus-am-fm-mode-decomposition-jmd?s_tid=prof_contriblnk) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/jmd/jmd.ipynb) |
|
|
197
|
+
| [`MJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/mjmd.py) (Multivariate Jump Plus AM-FM Mode Decomposition) | [[paper]](https://arxiv.org/abs/2407.07800) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/169393-multivariate-jump-plus-am-fm-mode-decomposition-mjmd?s_tid=prof_contriblnk) | [[notebook]]() |
|
|
198
|
+
| [`SJMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_jmd/sjmd.py) / `SMJMD` (Successive Jump and Mode Decomposition) | [[paper]](https://arxiv.org/abs/2504.08453) | [[code]]() | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/jmd/sjmd.ipynb) |
|
|
199
|
+
| [`ESMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_emd/esmd.py) (Extreme-Point Symmetric Mode Decomposition) | [[paper]](https://arxiv.org/abs/1303.6540) | [[code]](https://github.com/WuShichao/esmd) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/emd_variants/esmd.ipynb) |
|
|
200
|
+
| [`STNBMD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_vncmd/stnbmd.py) (Short-Time Narrow-Band Mode Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0022460X16002443?via%3Dihub) | [[code]](https://ww2.mathworks.cn/matlabcentral/fileexchange/56226-short-time-narrow-band-mode-decomposition-stnbmd-toolbox) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/vncmd/stnbmd.ipynb) |
|
|
201
|
+
| [`VTFMTD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_tfa/vftmtd.py) (Variational TF Mode Tracking Decomposition) | [[paper]](https://www.sciencedirect.com/science/article/pii/S0165168426001179) | [[code]](https://www.mathworks.com/matlabcentral/fileexchange/183389-variational-time-frequency-mode-tracking-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/tfa/vtfmtd.ipynb) |
|
|
202
|
+
| [`SWD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/swd.py) (Swarm Decomposition) | [[paper]](https://doi.org/10.1016/j.sigpro.2016.09.004) | [[code]](https://github.com/gkaposto/Swarm-Decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/osd/swd.ipynb) |
|
|
203
|
+
| [`OSD`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/_osd/osd.py) (Optimization-based Signal Decomposition) | [[paper]](https://web.stanford.edu/~boyd/papers/sig_decomp_mprox.html) | [[code]](https://github.com/cvxgrp/signal-decomposition) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/osd/osd_intro.ipynb) |
|
|
204
|
+
| [`STL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_stl.py) (Seasonal-Trend decomposition using LOESS) | [[paper]](https://www.nniiem.ru/file/news/2016/stl-statistical-model.pdf) | [[code]](https://www.statsmodels.org/stable/examples/notebooks/generated/stl_decomposition.html) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/tsa/stl.ipynb) |
|
|
205
|
+
| [`MSTL`](https://github.com/wwhenxuan/PySDKit/blob/main/pysdkit/tsa/_mstl.py) (Multivariate Seasonal-Trend decomposition using LOESS) | [[paper]](https://arxiv.org/abs/2107.13462) | [[code]](https://github.com/KishManani/MSTL) | [[notebook]](https://github.com/wwhenxuan/PySDKit/blob/main/examples/tsa/mstl.ipynb) |
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
|
|
@@ -15,11 +15,14 @@ pysdkit/_emd/__init__.py
|
|
|
15
15
|
pysdkit/_emd/_find_extrema.py
|
|
16
16
|
pysdkit/_emd/_prepare_points.py
|
|
17
17
|
pysdkit/_emd/_splines.py
|
|
18
|
+
pysdkit/_emd/apitmemd.py
|
|
18
19
|
pysdkit/_emd/ceemdan.py
|
|
19
20
|
pysdkit/_emd/eemd.py
|
|
20
21
|
pysdkit/_emd/emd.py
|
|
21
22
|
pysdkit/_emd/esmd.py
|
|
22
23
|
pysdkit/_emd/memd.py
|
|
24
|
+
pysdkit/_emd/nstemd.py
|
|
25
|
+
pysdkit/_emd/online_emd.py
|
|
23
26
|
pysdkit/_emd/remd.py
|
|
24
27
|
pysdkit/_emd/semd.py
|
|
25
28
|
pysdkit/_emd/tvf_emd.py
|
|
@@ -96,6 +99,9 @@ pysdkit/data/_loaders.py
|
|
|
96
99
|
pysdkit/data/_models.py
|
|
97
100
|
pysdkit/data/_test_univariate.py
|
|
98
101
|
pysdkit/data/_time_series.py
|
|
102
|
+
pysdkit/data/apitmemd_section_2b.npy
|
|
103
|
+
pysdkit/data/apitmemd_section_3a.npy
|
|
104
|
+
pysdkit/data/apitmemd_section_3b.npy
|
|
99
105
|
pysdkit/data/dual_signal_noise.npy
|
|
100
106
|
pysdkit/data/ecg_055m.npy
|
|
101
107
|
pysdkit/data/fmd_demo.npy
|
|
@@ -106,6 +112,7 @@ pysdkit/data/memd_syn_12channel.npy
|
|
|
106
112
|
pysdkit/data/memd_syn_16channel.npy
|
|
107
113
|
pysdkit/data/memd_syn_hex.npy
|
|
108
114
|
pysdkit/data/memd_taichi_hex.npy
|
|
115
|
+
pysdkit/data/oemd_ecg.npy
|
|
109
116
|
pysdkit/data/prefixed_double_filter.npy
|
|
110
117
|
pysdkit/data/single_nsignal.npy
|
|
111
118
|
pysdkit/data/texture.txt
|
|
@@ -130,6 +137,7 @@ pysdkit/tests/run_all.py
|
|
|
130
137
|
pysdkit/tests/test_acmd.py
|
|
131
138
|
pysdkit/tests/test_agncmd.py
|
|
132
139
|
pysdkit/tests/test_alif.py
|
|
140
|
+
pysdkit/tests/test_apitmemd.py
|
|
133
141
|
pysdkit/tests/test_apmd.py
|
|
134
142
|
pysdkit/tests/test_avncmd.py
|
|
135
143
|
pysdkit/tests/test_baacmd.py
|
|
@@ -160,6 +168,8 @@ pysdkit/tests/test_memd.py
|
|
|
160
168
|
pysdkit/tests/test_moving_decomp.py
|
|
161
169
|
pysdkit/tests/test_mstl.py
|
|
162
170
|
pysdkit/tests/test_mvmd.py
|
|
171
|
+
pysdkit/tests/test_nstemd.py
|
|
172
|
+
pysdkit/tests/test_onlineemd.py
|
|
163
173
|
pysdkit/tests/test_osd.py
|
|
164
174
|
pysdkit/tests/test_ovmd.py
|
|
165
175
|
pysdkit/tests/test_remd.py
|
|
@@ -202,5 +212,6 @@ pysdkit/utils/_hilbert.py
|
|
|
202
212
|
pysdkit/utils/_instantaneous.py
|
|
203
213
|
pysdkit/utils/_kernel_matrix.py
|
|
204
214
|
pysdkit/utils/_mirror.py
|
|
215
|
+
pysdkit/utils/_pca.py
|
|
205
216
|
pysdkit/utils/_process.py
|
|
206
217
|
pysdkit/utils/_smooth1d.py
|