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:
- 3:344b173f85fe
- Parent:
- 2:ae55928ff00f
- Child:
- 50:16314b798754
--- a/Filter.cpp Tue Oct 06 12:19:27 2015 +0000
+++ b/Filter.cpp Tue Oct 06 13:18:52 2015 +0000
@@ -13,7 +13,7 @@
double v = u - a1 * v1 - a2 * v2;
double y = gain * (b0 * v + b1 * v1 + b2 * v2);
- v2 = v1; // signalen doorschuiven, zodat bij volgende input, de vorige waardes vsn v worden onthouden
+ v2 = v1; // signalen doorschuiven, zodat bij de volgende input, de vorige waardes van v worden onthouden
v1 = v;
return y;
