Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: HIDScope MODSERIAL QEI TextLCD mbed
Fork of TotalControlEmg2 by
Diff: Filter.cpp
- Revision:
- 1:98be4152a539
- Parent:
- 0:557b1ff83a8a
- Child:
- 2:ae55928ff00f
diff -r 557b1ff83a8a -r 98be4152a539 Filter.cpp
--- a/Filter.cpp Tue Oct 06 12:02:22 2015 +0000
+++ b/Filter.cpp Tue Oct 06 12:07:40 2015 +0000
@@ -11,7 +11,7 @@
// y = uitgangssignaal (gefilterd)
double v = u - a1 * v1 - a2 * v2;
- double y = b0 * v + b1 * v1 + b2 * v2
+ double y = b0 * v + b1 * v1 + b2 * v2;
v2 = v1; // signalen doorschuiven, zodat bij volgende input, de vorige waardes vsn v worden onthouden
v1 = v;
