Automatic search of optimal filter cutoff frequency based on residual analysis
Project description
optcutfreq
Automatic search of optimal filter cutoff frequency based on residual analysis
The 'optimal' cutoff frequency (in the sense that a filter with such cutoff frequency removes as much noise as possible without considerably affecting the signal) is found by performing a residual analysis of the difference between filtered and unfiltered signals over a range of cutoff frequencies.
The optimal cutoff frequency is the one where the residual starts to change very little because it is considered that from this point, it's being filtered mostly noise and minimally signal, ideally.
Installation
pip install optcutfreq
Or
conda install -c duartexyz optcutfreq
Examples
>>> y = np.cumsum(np.random.randn(1000))
>>> # optimal cutoff frequency based on residual analysis and plot:
>>> fc_opt = optcutfreq(y, freq=1000, show=True)
>>> # sane analysis but specifying the frequency limits and plot:
>>> optcutfreq(y, freq=1000, fclim=[200,400], show=True)
>>> # It's not always possible to find an optimal cutoff frequency
>>> # or the one found can be wrong (run this example many times):
>>> y = np.random.randn(100)
>>> optcutfreq(y, freq=100, show=True)
How to cite this work
Here is a suggestion to cite this GitHub repository:
Duarte, M. (2020) optcutfreq: Automatic search of optimal filter cutoff frequency based on residual analysis. GitHub repository, https://github.com/demotu/optcutfreq.
And a possible BibTeX entry:
@misc{Duarte2020,
author = {Duarte, M.},
title = {optcutfreq: Automatic search of optimal filter cutoff frequency based on residual analysis},
year = {2020},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/demotu/optcutfreq}}
}
License
The non-software content of this project is licensed under a Creative Commons Attribution 4.0 International License, and the software code is licensed under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for optcutfreq-0.0.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a13389deb5d46b901cd20cb9ff0026db854ba39e8ff7e343c88a843e4bded5e4 |
|
MD5 | 64787cfdddaedec06103c865defa707d |
|
BLAKE2b-256 | 55ec051075c44704b99283b7511ec77d900a0d474da51d1b10f0573353611b60 |