|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#31
|
||||
|
||||
|
Re: paper: Shooter Wheel Speed Control
Quote:
The basic difference between FIR and IIR is that FIR uses only the sampled values, whereas IIR uses the sampled values and the previous filtered value(s). A simple example of an IIR filter would be: new_filtered_value = (new_sample_value + previous_filtered_value) / 2 The above is a special case (where K=1/2) of the so-called "exponentially weighted" IIR filter (commonly used): new_filtered_value = (1-K)*new_sample_value + K*previous_filtered_value ... where "K" is a tuning constant which varies from 0 to 1. when K=0, there is no filtering. as you increase K towards 1, the filtering gets more aggressive. Last edited by Ether : 21-04-2012 at 17:52. |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|