-
Notifications
You must be signed in to change notification settings - Fork 14
Docs: Leaky Integrator #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
||
## Leaky Integrator | ||
|
||
The **Leaky Integrator** process applies a smoothing algorithm to an input signal. It's particularly useful for reducing jitter from noisy sensors or creating smooth transitions in parameter values. The amount of smoothing can be controlled in real-time by adjusting the leak factor and the update frequency. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Although this is not wrong, I would prefer something closer to Wiki's explanation. The main reason to use it, other than as a low-pass filter (with any order), is to use it as an accumulator, e.g., have a "measure" of accumulated energy from a given sensor.
On my local build, the added |
The **Leaky Integrator** process acts as an accumulator that builds up a value based on its input signal over time. Simultaneously, it gradually 'leaks' or decays, preventing the value from growing indefinitely and allowing it to fall back to zero when the input stops. | ||
|
||
This behavior makes it ideal for measuring the 'energy' of a continuous gesture, such as a shake, or for creating smooth, organic-feeling transitions by filtering out noisy sensor data (acting as a low-pass filter). The `Leak Factor` directly controls the rate of this decay. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @edumeneses , the required description has been changed.
@edumeneses , I have changed the description let me know if any further changes. |
yes it's related to how the metadata is set, let me check. |
This PR adds the reference manual page and a common practices tutorial for the Leaky Integrator process.