Empirical mode decomposition

  • Blog post
  • Jaidev's pyhht library
  • Nabil Freij's poster at EuroSciPy, 2014: IDL, Python, Wavelet, EMD, and Licenses: The worries of a solar physicist
  • allegedly doesn't need fftw

In [1]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline

In [2]:
synthetic = np.loadtxt('benchmark_signals/synthetic.txt')

In [3]:
from pyhht import EMD

In [4]:
emd = EMD(synthetic)


---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-4-8963524492ff> in <module>()
----> 1 emd = EMD(synthetic)

TypeError: 'module' object is not callable

This module seems to be completely undocumented.


In [4]: