aspcore.adaptivefilter
Implements several basic adaptive filters. Including least mean squares (LMS), recursive least squares (RLS), and fast block LMS.
These are all constructed for an abritrary number of input and output channels. In addition, the filters work for streaming input, where not the full signals are availabe at once. The adaptive filters have not be heavily optimized, and can likely be improved a lot with regards to computational cost.
References
[dinizAdaptive2020] P. S. R. Diniz, Adaptive filtering: algorithms and practical implementation. Cham: Springer International Publishing, 2020. doi: 10.1007/978-3-030-29057-3. [link]
Functions
|
A decorator indicating abstract methods. |
Classes
|
|
|
|
|
Block based processing and normalization Dimension of filter is (input channels, output channels, IR length) Normalizes with a scalar, common for all channels identical to FastBlockLMS with scalar normalization |
|
Identical to BlockLMS when scalar normalization is used |
|
|
|
Sample by sample processing, although it accepts block inputs - Dimension of filter is (input channels, output channels, IR length) |
|
Dimension of filter is (input channels, output channels, IR length) |