You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
👋 what are your thoughts on allowing users to add a hook into the class to add a filter infront of the derivative term. I've read in a few places that adding a filter infront of the derivative term is a good idea (i.e. instead of passing the raw input_ to d_input, we pass in some filtered version).
High level:
defmy_filter(input_, previous_input_):
# compute things returnsome_floatpid=PID(...)
pid.add_derivative_hook(my_filter)
👋 what are your thoughts on allowing users to add a hook into the class to add a filter infront of the derivative term. I've read in a few places that adding a filter infront of the derivative term is a good idea (i.e. instead of passing the raw
input_
tod_input
, we pass in some filtered version).High level:
low level:
The text was updated successfully, but these errors were encountered: