File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ plot_IMFs_amplitude_spectra(IMFs, smooth="exp") # use exp smooth
9595| [ ` CEMD ` ] ( ) (Complex Empirical Mode Decomposition) | [[ paper]] ( https://ieeexplore.ieee.org/abstract/document/4063369 ) | [[ code]] ( ) | ✖️ |
9696| [ ` 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 ) | ✔️ |
9797| [ ` 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 ) | ✔️ |
98- | [ ` EMD2D ` ] ( ) (Empirical Mode Decomposition 2D for images) | [[ paper]] ( http://aquador.vovve.net/IEMD/ ) | [[ code]] ( http://aquador.vovve.net/IEMD/ ) | ✔️ |
98+ | [ ` 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/ ) | ✔️ |
9999| [ ` 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 ) | ✖️ |
100100| [ ` 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 ) | ✔️ |
101101| [ ` 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 ) | ✔️ |
Original file line number Diff line number Diff line change 22A Python library for signal decomposition algorithms.
33"""
44
5- __version__ = "0.4.15 "
5+ __version__ = "0.4.16 "
66
77__all__ = [
88 "EMD" ,
Original file line number Diff line number Diff line change 66setuptools .setup (
77 name = "PySDKit" , # 使用包的名称
88 packages = setuptools .find_packages (),
9- version = "0.4.15 " , # 包的版本号,应遵循语义版本控制规则
9+ version = "0.4.16 " , # 包的版本号,应遵循语义版本控制规则
1010 description = "A Python library for signal decomposition algorithms with a unified interface." , # 包的简短描述
1111 url = "https://github.com/wwhenxuan/PySDKit" , # 项目的地址通常来说是github
1212 author = "whenxuan" ,
You can’t perform that action at this time.
0 commit comments