Simple biquad filter

Dependents:   EMG_Filter frdm_Motor_V2_2 frdm_Motor_V2_2 frdm_Motor_V2_3 ... more

Files at this revision

API Documentation at this revision

Comitter:
tomlankhorst
Date:
Sun Oct 02 20:47:42 2016 +0000
Parent:
5:519e9002b10e
Child:
7:26861979d305
Commit message:
Update

Changed in this revision

BiQuad.h Show annotated file Show diff for this revision Revisions of this file
--- a/BiQuad.h	Sun Oct 02 20:45:07 2016 +0000
+++ b/BiQuad.h	Sun Oct 02 20:47:42 2016 +0000
@@ -5,7 +5,6 @@
 #include <complex>
 
 /** BiQuad class implements a single filter
- *
  * author: T.J.W. Lankhorst <t.j.w.lankhorst@student.utwente.nl>
  *
  * Filters that - in the z domain - are the ratio of two quadratic functions. The general form is:
@@ -16,6 +15,8 @@
  *
  * Which is often normalized by dividing all coefficients by a0.
  *
+ * Source: https://github.com/tomlankhorst/biquad 
+ *
  * Example:
  * @code
  * #include "mbed.h"