We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5de747 commit 8f64328Copy full SHA for 8f64328
src/discrete_blocks.jl
@@ -948,7 +948,10 @@ end
948
"""
949
ExponentialFilter(a = 0.1)
950
951
-Exponential filtering with input-output relation ``y(z) ~ (1 - a) y(z-1) + a u(z-1)``
+Exponential filtering (first-order filter) with input-output relation ``y(z) ~ (1 - a) y(z-1) + a u(z-1)``, transfer function
952
+```math
953
+Y(z) = \\dfrac{a}{1 - (1 - a) z^{-1}} U(z)
954
+```
955
956
# Parameters:
957
- `a`: Filter parameter `[0, 1]`, a small value implies stronger filtering.
0 commit comments