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 a38c1e75a2 Update CMake and tests. 2021-03-19 13:45:58 +09:00
cmake@f4997a81ce Update CMake and tests. 2021-03-19 13:45:58 +09:00
doc Add docs. 2019-01-04 17:15:03 +09:00
include Set to c++14. 2020-03-30 18:00:43 +09:00
tests Update CMake and tests. 2021-03-19 13:45:58 +09:00
.clang-format Time-fixed central filter pass. 2019-11-08 15:52:27 +09:00
.gitmodules Initial commit with generic filter 2018-10-23 10:16:10 +09:00
CMakeLists.txt Update CMake and tests. 2021-03-19 13:45:58 +09:00
LICENSE Relax license. 2019-10-10 11:31:00 +09:00
README.md Update CMake and tests. 2021-03-19 13:45:58 +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

and the differentiators from Pavel Holoborodko

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).