Last active
November 5, 2017 09:26
-
-
Save Dzinlife/0eb9b949e698d23ae19d to your computer and use it in GitHub Desktop.
Low pass filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const double ALPHA = 0.05; | |
resultSpeed = ALPHA * currentSpeed + (1.0 - ALPHA) * resultSpeed; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment