Function is an exponential low-pass filter for a single input value x
. The coef
input specifies the smoothing factor. The result of the filter is passed to the output y
.
Function menu | Block diagram |
---|---|
![]() |
![]() |
Name | Type | Description |
---|---|---|
x |
float | Input value |
coef |
float | Smoothing coefficient If coef > 1 , then filtering works (higher value, stronger smoothing).If coef == 1 , then the filter is disabled and the value of x is simply copied to the output y without change .If coef <= 0 , then output y is always 0 . |
Name | Type | Description |
---|---|---|
y |
float | Filter result |
Not available