Contributions:HilbertFilter: Difference between revisions
| Line 5: | Line 5: | ||
:<math> x_{a}(n) = \operatorname{Re}(x(n)) + \operatorname{Im}(x(n)) </math> | :<math> x_{a}(n) = \operatorname{Re}(x(n)) + \operatorname{Im}(x(n)) </math> | ||
The real part is the same input signal, and the imaginary part is the Hilbert transform of the input signal. The Hilbert transform was implemented as the convolution of the input signal | The real part is the same input signal, and the imaginary part is the Hilbert transform of the input signal. The Hilbert transform was implemented as the convolution of the input signal with the FIR filter ''h''(''n''). | ||
:<math> h(n) = | :<math> h(n) = | ||
| Line 14: | Line 14: | ||
</math> | </math> | ||
To get an ideal Hilbert transform, ''n'' must be infinitely long <math>(-\infty < n < \infty)</math>. However, for real time implementations, ''h''(''n'') must be truncated and delayed to guarantee a causal filter. | |||
==Location== | ==Location== | ||
Revision as of 21:19, 19 March 2012
Synopsis
This filter computes the envelope or the phase of a signal using Hilbert transform. The discrete input signal is first transformed to its analytic representation (i.e., analytic signal), which is composed of a real and an imaginary part.
The real part is the same input signal, and the imaginary part is the Hilbert transform of the input signal. The Hilbert transform was implemented as the convolution of the input signal with the FIR filter h(n).
To get an ideal Hilbert transform, n must be infinitely long . However, for real time implementations, h(n) must be truncated and delayed to guarantee a causal filter.
Location
Not yet released: will be released at http://www.bci2000.org/svn/trunk/src/contrib/SignalProcessing/HilbertSignalProcessing/HilbertFilter.cpp
Versioning
Authors
Cristhian Potes, Jeremy Hill
Source Code Revisions
- Initial development:
- Tested under:
- Known to compile under:
- Broken since:
Parameters
OutputSignal
This parameter may be one of
- 0 - Copy input signal
- no processing,
- 1 - Magnitude
- Hilbert envelope amplitude,
- 2 - Phase
- Hilbert phase,
- 3 - Real part
- original input signal, but with a delay to match its timing to the imaginary part.
- 4 - Imaginary part
- original signal filtered with an FIR-Hilbert transformer.
Delay
States
None.
See also
User Reference:Filters, Contributions:SignalProcessing, Contributions:HilbertSignalProcessing