PySDKit 0.4.39__tar.gz → 0.4.40__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.
Files changed (177) hide show
  1. {pysdkit-0.4.39 → pysdkit-0.4.40}/PKG-INFO +1 -1
  2. {pysdkit-0.4.39 → pysdkit-0.4.40}/PySDKit.egg-info/PKG-INFO +1 -1
  3. {pysdkit-0.4.39 → pysdkit-0.4.40}/PySDKit.egg-info/SOURCES.txt +2 -0
  4. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/__init__.py +7 -1
  5. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_gdmd/__init__.py +26 -2
  6. pysdkit-0.4.40/pysdkit/_gdmd/ivgnmd.py +1176 -0
  7. pysdkit-0.4.40/pysdkit/_lmd/lmd.py +291 -0
  8. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_lmd/rlmd.py +146 -140
  9. pysdkit-0.4.40/pysdkit/tests/test_ivgnmd.py +155 -0
  10. pysdkit-0.4.40/pysdkit/tests/test_lmd.py +118 -0
  11. pysdkit-0.4.40/pysdkit/tests/test_rlmd.py +126 -0
  12. pysdkit-0.4.39/pysdkit/_lmd/lmd.py +0 -324
  13. pysdkit-0.4.39/pysdkit/tests/test_lmd.py +0 -81
  14. pysdkit-0.4.39/pysdkit/tests/test_rlmd.py +0 -81
  15. {pysdkit-0.4.39 → pysdkit-0.4.40}/LICENSE +0 -0
  16. {pysdkit-0.4.39 → pysdkit-0.4.40}/PySDKit.egg-info/dependency_links.txt +0 -0
  17. {pysdkit-0.4.39 → pysdkit-0.4.40}/PySDKit.egg-info/requires.txt +0 -0
  18. {pysdkit-0.4.39 → pysdkit-0.4.40}/PySDKit.egg-info/top_level.txt +0 -0
  19. {pysdkit-0.4.39 → pysdkit-0.4.40}/README.md +0 -0
  20. {pysdkit-0.4.39 → pysdkit-0.4.40}/pyproject.toml +0 -0
  21. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_alif/__init__.py +0 -0
  22. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_alif/alif.py +0 -0
  23. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_alif/data/__init__.py +0 -0
  24. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_alif/data/prefixed_double_filter.npy +0 -0
  25. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_alif/iterative_filtering.py +0 -0
  26. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_apmd/__init__.py +0 -0
  27. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_apmd/apmd.py +0 -0
  28. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/__init__.py +0 -0
  29. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/_find_extrema.py +0 -0
  30. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/_prepare_points.py +0 -0
  31. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/_splines.py +0 -0
  32. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/ceemdan.py +0 -0
  33. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/eemd.py +0 -0
  34. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/efd.py +0 -0
  35. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/emd.py +0 -0
  36. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/hht/__init__.py +0 -0
  37. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/hht/frequency.py +0 -0
  38. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/hht/hht.py +0 -0
  39. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/memd.py +0 -0
  40. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/remd.py +0 -0
  41. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/semd.py +0 -0
  42. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd/tvf_emd.py +0 -0
  43. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd2d/__init__.py +0 -0
  44. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd2d/bemd.py +0 -0
  45. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd2d/bmemd.py +0 -0
  46. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_emd2d/emd2d.py +0 -0
  47. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_esmd/__init__.py +0 -0
  48. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_esmd/esmd.py +0 -0
  49. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_ewt/__init__.py +0 -0
  50. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_ewt/ewt.py +0 -0
  51. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_ewt/ewt2d.py +0 -0
  52. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_faemd/__init__.py +0 -0
  53. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_faemd/extrema.py +0 -0
  54. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_faemd/faemd.py +0 -0
  55. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_faemd/faemd2d.py +0 -0
  56. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_faemd/faemd3d.py +0 -0
  57. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_faemd/filter.py +0 -0
  58. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_fmd/__init__.py +0 -0
  59. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_fmd/fmd.py +0 -0
  60. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_fmd/nfmd.py +0 -0
  61. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_gdmd/gdmd.py +0 -0
  62. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_gdmd/vgnmd.py +0 -0
  63. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_hvd/__init__.py +0 -0
  64. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_hvd/hvd.py +0 -0
  65. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_itd/__init__.py +0 -0
  66. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_itd/itd.py +0 -0
  67. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_jmd/__init__.py +0 -0
  68. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_jmd/jmd.py +0 -0
  69. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_jmd/mjmd.py +0 -0
  70. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_jmd/sjmd.py +0 -0
  71. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_lmd/__init__.py +0 -0
  72. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_osd/__init__.py +0 -0
  73. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_osd/swd.py +0 -0
  74. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_ssa/__init__.py +0 -0
  75. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_ssa/ssa.py +0 -0
  76. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/__init__.py +0 -0
  77. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/acmd.py +0 -0
  78. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/avmd.py +0 -0
  79. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/ba_acmd.py +0 -0
  80. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/base.py +0 -0
  81. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/mvmd.py +0 -0
  82. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/ovmd.py +0 -0
  83. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/stvmd.py +0 -0
  84. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/svmd.py +0 -0
  85. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/vmd_c.py +0 -0
  86. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/vmd_f.py +0 -0
  87. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd/vme.py +0 -0
  88. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd2d/__init__.py +0 -0
  89. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd2d/cvmd2d.py +0 -0
  90. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vmd2d/vmd2d.py +0 -0
  91. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vncmd/__init__.py +0 -0
  92. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vncmd/avncmd.py +0 -0
  93. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vncmd/incmd.py +0 -0
  94. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/_vncmd/vncmd.py +0 -0
  95. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/__init__.py +0 -0
  96. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/_add_noise.py +0 -0
  97. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/_cube.py +0 -0
  98. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/_generator.py +0 -0
  99. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/_image.py +0 -0
  100. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/_models.py +0 -0
  101. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/_test_univariate.py +0 -0
  102. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/_time_series.py +0 -0
  103. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/data/texture.txt +0 -0
  104. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/entropy/__init__.py +0 -0
  105. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/entropy/_approxiamte_entropy.py +0 -0
  106. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/entropy/_permutation_entropy.py +0 -0
  107. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/entropy/_sample_entropy.py +0 -0
  108. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/models/__init__.py +0 -0
  109. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/models/_base.py +0 -0
  110. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/models/_kmeans.py +0 -0
  111. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/models/_knn.py +0 -0
  112. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/models/_pca.py +0 -0
  113. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/plot/__init__.py +0 -0
  114. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/plot/_fourier_spectra.py +0 -0
  115. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/plot/_functions.py +0 -0
  116. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/plot/_plot_images.py +0 -0
  117. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/plot/_plot_imfs.py +0 -0
  118. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/plot/_plot_signal.py +0 -0
  119. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/__init__.py +0 -0
  120. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/data/__init__.py +0 -0
  121. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/data/test_generator_cube.py +0 -0
  122. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/data/test_generator_image.py +0 -0
  123. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/data/test_generator_signal.py +0 -0
  124. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/data/test_generator_univariate_signal.py +0 -0
  125. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/models/__init__.py +0 -0
  126. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/models/test_knn.py +0 -0
  127. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/models/test_pca.py +0 -0
  128. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/run_all.py +0 -0
  129. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_alif.py +0 -0
  130. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_apmd.py +0 -0
  131. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_avncmd.py +0 -0
  132. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_bmemd.py +0 -0
  133. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_ceemdan.py +0 -0
  134. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_cvmd2d.py +0 -0
  135. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_eemd.py +0 -0
  136. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_emd.py +0 -0
  137. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_ewt.py +0 -0
  138. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_ewt2d.py +0 -0
  139. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_faemd.py +0 -0
  140. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_faemd2d.py +0 -0
  141. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_faemd3d.py +0 -0
  142. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_gdmd.py +0 -0
  143. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_itd.py +0 -0
  144. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_jmd.py +0 -0
  145. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_moving_decomp.py +0 -0
  146. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_mstl.py +0 -0
  147. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_ovmd.py +0 -0
  148. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_semd.py +0 -0
  149. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_sjmd.py +0 -0
  150. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_ssa.py +0 -0
  151. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_stl.py +0 -0
  152. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_stvmd.py +0 -0
  153. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_svmd.py +0 -0
  154. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_swd.py +0 -0
  155. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_vgnmd.py +0 -0
  156. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_vmd.py +0 -0
  157. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_vmd2d.py +0 -0
  158. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tests/test_vncmd.py +0 -0
  159. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tsa/__init__.py +0 -0
  160. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tsa/_dtw.py +0 -0
  161. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tsa/_moving_decomp.py +0 -0
  162. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tsa/_mstl.py +0 -0
  163. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/tsa/_stl.py +0 -0
  164. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/__init__.py +0 -0
  165. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_cite.py +0 -0
  166. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_correlation.py +0 -0
  167. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_diagnalization.py +0 -0
  168. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_differ.py +0 -0
  169. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_fft.py +0 -0
  170. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_function.py +0 -0
  171. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_hilbert.py +0 -0
  172. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_instantaneous.py +0 -0
  173. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_kernel_matrix.py +0 -0
  174. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_mirror.py +0 -0
  175. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_process.py +0 -0
  176. {pysdkit-0.4.39 → pysdkit-0.4.40}/pysdkit/utils/_smooth1d.py +0 -0
  177. {pysdkit-0.4.39 → pysdkit-0.4.40}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PySDKit
3
- Version: 0.4.39
3
+ Version: 0.4.40
4
4
  Summary: A Python library for signal decomposition algorithms with a unified interface.
5
5
  Author: josefinez, Deeksha Manjunath, Yuan Feng, JacktheFowler
6
6
  Author-email: Whenxuan Wang <wwhenxuan@gmail.com>, RuiZhe Wang <3133986068@qq.com>, WenTong Zhao <23049200290@stu.xidian.edu.cn>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PySDKit
3
- Version: 0.4.39
3
+ Version: 0.4.40
4
4
  Summary: A Python library for signal decomposition algorithms with a unified interface.
5
5
  Author: josefinez, Deeksha Manjunath, Yuan Feng, JacktheFowler
6
6
  Author-email: Whenxuan Wang <wwhenxuan@gmail.com>, RuiZhe Wang <3133986068@qq.com>, WenTong Zhao <23049200290@stu.xidian.edu.cn>
@@ -49,6 +49,7 @@ pysdkit/_fmd/fmd.py
49
49
  pysdkit/_fmd/nfmd.py
50
50
  pysdkit/_gdmd/__init__.py
51
51
  pysdkit/_gdmd/gdmd.py
52
+ pysdkit/_gdmd/ivgnmd.py
52
53
  pysdkit/_gdmd/vgnmd.py
53
54
  pysdkit/_hvd/__init__.py
54
55
  pysdkit/_hvd/hvd.py
@@ -125,6 +126,7 @@ pysdkit/tests/test_faemd2d.py
125
126
  pysdkit/tests/test_faemd3d.py
126
127
  pysdkit/tests/test_gdmd.py
127
128
  pysdkit/tests/test_itd.py
129
+ pysdkit/tests/test_ivgnmd.py
128
130
  pysdkit/tests/test_jmd.py
129
131
  pysdkit/tests/test_lmd.py
130
132
  pysdkit/tests/test_moving_decomp.py
@@ -2,7 +2,7 @@
2
2
  A Python library for signal decomposition algorithms.
3
3
  """
4
4
 
5
- __version__ = "0.4.39"
5
+ __version__ = "0.4.40"
6
6
 
7
7
  # Empirical Mode Decomposition
8
8
  from ._emd import EMD
@@ -61,6 +61,9 @@ from ._gdmd import GDMD, gdmd
61
61
  # Variational Generalized Nonlinear Mode Decomposition
62
62
  from ._gdmd import VGNMD, vgnmd
63
63
 
64
+ # Improved Variational Generalized Nonlinear Mode Decomposition
65
+ from ._gdmd import IVGNMD, ivgnmd
66
+
64
67
  # Variational Mode Decomposition
65
68
  from ._vmd import vmd, VMD
66
69
 
@@ -178,6 +181,7 @@ Singular Spectral Analysis | SSA
178
181
  Swarm Decomposition | SWD
179
182
  Generalized Dispersion Mode Decomposition | GDMD
180
183
  Variational Generalized Nonlinear Mode Dec. | VGNMD
184
+ Improved VGNMD (crossed chirp / dispersive) | IVGNMD
181
185
  Variational Mode Decomposition | VMD
182
186
  Multivariate Variational Mode Decomposition | MVMD
183
187
  Variational Mode Extraction | VME
@@ -231,6 +235,8 @@ __all__ = [
231
235
  "gdmd",
232
236
  "VGNMD",
233
237
  "vgnmd",
238
+ "IVGNMD",
239
+ "ivgnmd",
234
240
  "vmd",
235
241
  "VMD",
236
242
  "ACMD",
@@ -4,8 +4,9 @@ Created on 2025/07/31
4
4
  @author: Whenxuan Wang
5
5
  @email: wwhenxuan@gmail.com
6
6
 
7
- Generalized Dispersion Mode Decomposition (GDMD) and
8
- Variational Generalized Nonlinear Mode Decomposition (VGNMD).
7
+ Generalized Dispersion Mode Decomposition (GDMD),
8
+ Variational Generalized Nonlinear Mode Decomposition (VGNMD),
9
+ and Improved VGNMD (IVGNMD).
9
10
  """
10
11
 
11
12
  from .gdmd import (
@@ -31,6 +32,19 @@ from .vgnmd import (
31
32
  acmd_single,
32
33
  )
33
34
 
35
+ from .ivgnmd import (
36
+ IVGNMD,
37
+ ivgnmd,
38
+ atffc_ivgnmd,
39
+ se,
40
+ tfsc,
41
+ tfst,
42
+ tfptd,
43
+ mtdc_ridge,
44
+ voa_ivgnmd,
45
+ make_ivgnmd_demo_signal,
46
+ )
47
+
34
48
  __all__ = [
35
49
  "GDMD",
36
50
  "gdmd",
@@ -49,4 +63,14 @@ __all__ = [
49
63
  "stft_vgnmd",
50
64
  "make_vgnmd_demo_signal",
51
65
  "acmd_single",
66
+ "IVGNMD",
67
+ "ivgnmd",
68
+ "atffc_ivgnmd",
69
+ "se",
70
+ "tfsc",
71
+ "tfst",
72
+ "tfptd",
73
+ "mtdc_ridge",
74
+ "voa_ivgnmd",
75
+ "make_ivgnmd_demo_signal",
52
76
  ]