You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note**, however, that this will install it in your current environment. If you are working on many projects, or sharing reources with others, we suggest using [virtual environments](https://docs.python.org/3/library/venv.html).
81
110
If you want to make your installation editable use the `-e` flag for [pip](https://packaging.python.org/en/latest/tutorials/installing-packages/)
111
+
82
112
## Example
83
113
84
114
More detailed examples are included in the
@@ -186,7 +216,9 @@ and suggestions.
186
216
187
217
To enable JIT in your PyEMD, please install with `jit` option, i.e.
188
218
189
-
> \$ pip install EMD-signal[jit]
219
+
```sh
220
+
pip install EMD-signal[jit]
221
+
```
190
222
191
223
### EMD2D/BEMD
192
224
@@ -208,6 +240,7 @@ IMFs_2D = emd2d(img)
208
240
## F.A.Q
209
241
210
242
### Why is EEMD/CEEMDAN so slow?
243
+
211
244
Unfortunately, that's their nature. They execute EMD multiple times every time with slightly modified version. Added noise can cause a creation of many extrema which will decrease performance of the natural cubic spline. For some tweaks on how to deal with that please see [Speedup tricks](https://pyemd.readthedocs.io/en/latest/speedup.html) in the documentation.
0 commit comments