PySDKit 0.4__py3-none-any.whl → 0.4.1__py3-none-any.whl
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.dist-info → PySDKit-0.4.1.dist-info}/METADATA +5 -8
- {PySDKit-0.4.dist-info → PySDKit-0.4.1.dist-info}/RECORD +5 -5
- {PySDKit-0.4.dist-info → PySDKit-0.4.1.dist-info}/LICENSE +0 -0
- {PySDKit-0.4.dist-info → PySDKit-0.4.1.dist-info}/WHEEL +0 -0
- {PySDKit-0.4.dist-info → PySDKit-0.4.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PySDKit
|
|
3
|
-
Version: 0.4
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: A Python library for signal decomposition algorithms with a unified interface
|
|
5
5
|
Home-page: https://github.com/wwhenxuan/PySDKit
|
|
6
6
|
Author: whenxuan
|
|
@@ -31,9 +31,7 @@ Requires-Dist: matplotlib (>=3.7.2)
|
|
|
31
31
|
|
|
32
32
|
A Python library for signal decomposition algorithms
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
<img src=".\images\Logo_sd.png" alt="Logo_sd" width="500"/>
|
|
36
|
-
</div>
|
|
34
|
+

|
|
37
35
|
|
|
38
36
|
## Installation
|
|
39
37
|
|
|
@@ -67,7 +65,7 @@ IMFs = emd.fit_transform(signal, max_imf=2)
|
|
|
67
65
|
plot_IMFs(signal, IMFs)
|
|
68
66
|
~~~
|
|
69
67
|
|
|
70
|
-
|
|
68
|
+

|
|
71
69
|
|
|
72
70
|
The EMD in the above example is the most classic `empirical mode decomposition` algorithm in signal decomposition. For more complex signals, you can try other algorithms such as variational mode decomposition ([`VMD`](https://ieeexplore.ieee.org/abstract/document/6655981)).
|
|
73
71
|
|
|
@@ -85,7 +83,7 @@ print(IMFs.shape)
|
|
|
85
83
|
vmd.plot_IMFs(save_figure=True)
|
|
86
84
|
~~~
|
|
87
85
|
|
|
88
|
-
|
|
86
|
+

|
|
89
87
|
|
|
90
88
|
Better observe the characteristics of the decomposed intrinsic mode function in the frequency domain.
|
|
91
89
|
|
|
@@ -96,5 +94,4 @@ from pysdkit.plot import plot_IMFs_amplitude_spectra
|
|
|
96
94
|
plot_IMFs_amplitude_spectra(IMFs, smooth="exp") # use exp smooth
|
|
97
95
|
~~~
|
|
98
96
|
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+

|
|
@@ -35,8 +35,8 @@ pysdkit/vmd/_vmd_f.py,sha256=kb2GiAThe_xqU7qLATkOdlbXj4kWFFLayKJ1nouc6eQ,5402
|
|
|
35
35
|
pysdkit/vmd/base.py,sha256=frcDhMadR2WHM6UTnjGgufAiZhweqrNti9E71h7zUQI,3442
|
|
36
36
|
pysdkit/vncmd/__init__.py,sha256=n9grWZ12fpbtfAtiQO50Bkg1sB0eiUDXbiMmbWk_i8c,25
|
|
37
37
|
pysdkit/vncmd/vncmd.py,sha256=digpTAUGRsddbS3bM-9p6-5tENq-__AT7aonYgVHEzA,12362
|
|
38
|
-
PySDKit-0.4.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
39
|
-
PySDKit-0.4.dist-info/METADATA,sha256=
|
|
40
|
-
PySDKit-0.4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
41
|
-
PySDKit-0.4.dist-info/top_level.txt,sha256=wN_Yil0woB5Tu_WrIRt4_T4eoRyXljCYvH0dL6-7ei0,8
|
|
42
|
-
PySDKit-0.4.dist-info/RECORD,,
|
|
38
|
+
PySDKit-0.4.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
39
|
+
PySDKit-0.4.1.dist-info/METADATA,sha256=j2b2GUb_jvaNfM3o_Rwnr3fntyvqwy5-uC9Xqj12dmg,4376
|
|
40
|
+
PySDKit-0.4.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
41
|
+
PySDKit-0.4.1.dist-info/top_level.txt,sha256=wN_Yil0woB5Tu_WrIRt4_T4eoRyXljCYvH0dL6-7ei0,8
|
|
42
|
+
PySDKit-0.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|