DiFi++ is a small c++ header-only library for DIgital FIlters based on rational transfer functions such as the butterworth filter and the moving average filter
 
 
 
Go to file
Vincent Samy 3320b425bd Add Central filtrering. 2019-10-28 17:23:25 +09:00
cmake@192812cc2c Modernize cmake. 2019-10-10 13:10:20 +09:00
doc Add docs. 2019-01-04 17:15:03 +09:00
include Add Central filtrering. 2019-10-28 17:23:25 +09:00
tests Fix some boost pb. 2019-10-28 17:22:37 +09:00
.clang-format Add clang formatter. 2019-10-28 17:21:32 +09:00
.gitmodules Initial commit with generic filter 2018-10-23 10:16:10 +09:00
CMakeLists.txt Don't install useless files. 2019-10-10 13:16:40 +09:00
LICENSE Relax license. 2019-10-10 11:31:00 +09:00
README.md Relax license. 2019-10-10 11:31:00 +09:00

README.md

DiFi++

License BSD 2-Clause

DiFi++ is a small c++ header-only library for DIgital FIlters based on rational transfer functions such as the butterworth filter and the moving average filter. DiFi++ is using the Eigen library for math computations.

The implementation is based on well written article from Neil Robertson. Please check out the followings

The library has been tested against Matlab results.

A doxygen documentation is generated when compiling.

Installing

This is an header-only library so there is nothing to compile (but the documentation)

git clone --recursive https://github.com/vsamy/DiFi++
cd DiFi++
mkdir build
cd build
cmake ..
make install

Note

The method used is close but somewhat different from Matlab methods and Butterworth band-reject has quite different results (precision of 1e-8).