Example of Empirical Mode Decomposition algorithm
An example and introduction to EMD (Empirical mode decomposition) algorithm. EMD is the basis for HHT and is very suitable for work with non-stationary signals.
Empirical Mode Decomposition is a simple iterative process that breaks the signal into components called intrinsic mode functions (IMF). Every IMF contains the highest frequency of the signal in the previous iteration, thus enabling high-frequency noise rejection.
IMF is defined as the function that satisfies the following two requirements:
This script will show the implementation of classical EMD algorithm. For other kinds of EMD, such as ensemble EMD, please refer to:
To install emd package, insert the command:
> pip install emd